Categories > Exploiting > Scripts >
Area 52 Gear Giver Script
Posted
This is Not my Script so there is the credit for him:
youtube channel: https://www.youtube.com/channel/UC7AbTsmLhs1GbA1L9dtjWbw
Game: https://www.roblox.com/games/5126933438/SECTOR-4-Area-52?refPageId=f07d410e-5c72-49b4-865f-ce9f5316c954
Code:
-- Instances:
local h = Instance.new("ScreenGui")
local ItemGiver = Instance.new("Frame")
local GiveItem = Instance.new("TextButton")
local ItemName = Instance.new("TextBox")
local Minigun = Instance.new("TextButton")
local Omni = Instance.new("TextButton")
local Close = Instance.new("TextButton")
--Properties:
h.Name = "`h`¤"
h.Parent = game.CoreGui
h.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
ItemGiver.Name = "Item Giver"
ItemGiver.Parent = h
ItemGiver.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
ItemGiver.Position = UDim2.new(0.7414698, 0, 0.423076928, 0)
ItemGiver.Size = UDim2.new(0, 250, 0, 100)
ItemGiver.Active = true
ItemGiver.Draggable = true
GiveItem.Name = "GiveItem"
GiveItem.Parent = ItemGiver
GiveItem.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
GiveItem.BorderSizePixel = 0
GiveItem.Position = UDim2.new(0, 0, 0.75, 0)
GiveItem.Size = UDim2.new(0, 250, 0, 25)
GiveItem.Font = Enum.Font.SourceSans
GiveItem.Text = "Give Item"
GiveItem.TextColor3 = Color3.fromRGB(220, 220, 220)
GiveItem.TextSize = 23.000
GiveItem.MouseButton1Click:connect(function()
game.ReplicatedStorage.Remotes.Events.XPEvent:FireServer(game.Players.LocalPlayer.Name, "GunReward", ItemName.Text)
end)
ItemName.Name = "ItemName"
ItemName.Parent = ItemGiver
ItemName.BackgroundColor3 = Color3.fromRGB(81, 81, 81)
ItemName.Position = UDim2.new(0, 0, 0.579999983, 0)
ItemName.Size = UDim2.new(0, 250, 0, 17)
ItemName.Font = Enum.Font.SourceSans
ItemName.PlaceholderColor3 = Color3.fromRGB(220, 220, 220)
ItemName.Text = "Item name..."
ItemName.TextColor3 = Color3.fromRGB(220, 220, 220)
ItemName.TextSize = 14.000
Minigun.Name = "Minigun"
Minigun.Parent = ItemGiver
Minigun.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
Minigun.BorderColor3 = Color3.fromRGB(144, 144, 144)
Minigun.Position = UDim2.new(0.0399999991, 0, 0.25, 0)
Minigun.Size = UDim2.new(0, 102, 0, 23)
Minigun.Font = Enum.Font.SourceSans
Minigun.Text = "Minigun"
Minigun.TextColor3 = Color3.fromRGB(220, 220, 220)
Minigun.TextSize = 19.000
Minigun.MouseButton1Click:connect(function()
game.ReplicatedStorage.Remotes.Events.XPEvent:FireServer(game.Players.LocalPlayer.Name, "GunReward", "Minigun")
end)
Omni.Name = "Omni"
Omni.Parent = ItemGiver
Omni.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
Omni.BorderColor3 = Color3.fromRGB(144, 144, 144)
Omni.Position = UDim2.new(0.552000046, 0, 0.25, 0)
Omni.Size = UDim2.new(0, 102, 0, 23)
Omni.Font = Enum.Font.SourceSans
Omni.Text = "Omni Card"
Omni.TextColor3 = Color3.fromRGB(220, 220, 220)
Omni.TextSize = 19.000
Omni.MouseButton1Click:connect(function()
game.ReplicatedStorage.Remotes.Events.XPEvent:FireServer(game.Players.LocalPlayer.Name, "GunReward", "[SCP] Omni Card")
end)
Close.Name = "Close"
Close.Parent = ItemGiver
Close.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
Close.BorderSizePixel = 0
Close.Position = UDim2.new(0.93599999, 0, 0, 0)
Close.Size = UDim2.new(0, 16, 0, 14)
Close.Font = Enum.Font.SourceSans
Close.Text = "X"
Close.TextColor3 = Color3.fromRGB(234, 43, 5)
Close.TextSize = 14.000
Close.MouseButton1Click:connect(function()
h:Destroy()
end)
Added
Contact The creator if any problem's
Cancel
Post
Replied
great script!
Cancel
Post
Replied
Nice script
Cancel
Post
Hi, I make lego game scripts :D
Â
cool ikr
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post