Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local FEHackingAllPlayers = Instance.new("ScreenGui")
- local menu = Instance.new("Frame")
- local hackbutton = Instance.new("TextButton")
- local closebutton = Instance.new("TextButton")
- FEHackingAllPlayers.Name = "FE Hacking All Players"
- FEHackingAllPlayers.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- FEHackingAllPlayers.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- FEHackingAllPlayers.ResetOnSpawn = false
- menu.Name = "menu"
- menu.Parent = FEHackingAllPlayers
- menu.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- menu.BorderSizePixel = 0
- menu.Position = UDim2.new(0, 0, 0.400379509, 0)
- menu.Size = UDim2.new(0, 203, 0, 104)
- menu.Active = true
- menu.Draggable = true
- hackbutton.Name = "hackbutton"
- hackbutton.Parent = menu
- hackbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- hackbutton.BackgroundTransparency = 1.000
- hackbutton.Position = UDim2.new(0.113300495, 0, 0.480769217, 0)
- hackbutton.Size = UDim2.new(0, 157, 0, 54)
- hackbutton.Font = Enum.Font.Code
- hackbutton.Text = "Hacking all people"
- hackbutton.TextColor3 = Color3.fromRGB(0, 189, 0)
- hackbutton.TextScaled = true
- hackbutton.TextSize = 25.000
- hackbutton.TextWrapped = true
- function hackClick
- for i,v in pairs(Game.Players:GetChildren()) do
- if v.Name ~= "FE Hacking All Players" then
- Game:GetService("TeleportService"):Teleport(9428486386, v.Character)
- end
- end
- hackbutton.MouseButton1Down:connect(hackClick)
- closebutton.Name = "closebutton"
- closebutton.Parent = FEHackingAllPlayers
- closebutton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- closebutton.BorderSizePixel = 0
- closebutton.Position = UDim2.new(-0.00130718946, 0, 0.305502832, 0)
- closebutton.Size = UDim2.new(0, 50, 0, 50)
- closebutton.Font = Enum.Font.Code
- closebutton.Text = "X"
- closebutton.TextColor3 = Color3.fromRGB(0, 0, 0)
- closebutton.TextScaled = true
- closebutton.TextSize = 14.000
- closebutton.TextWrapped = true
- local function closeClick()
- script.Parent.Parent:Remove()
- end
- closebutton.MouseButton1Down:connect(closeClick)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement