Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local fpsweird = Instance.new("ScreenGui")
- local activateframe = Instance.new("Frame")
- local activate = Instance.new("TextButton")
- local fpsframe = Instance.new("Frame")
- local waa = Instance.new("Frame")
- local ku = Instance.new("TextLabel")
- local esp = Instance.new("TextButton")
- local aimbot = Instance.new("TextButton")
- local ctrlclickdel = Instance.new("TextButton")
- local infjump = Instance.new("TextButton")
- local noc = Instance.new("TextButton")
- local brokem = Instance.new("TextButton")
- local empty = Instance.new("TextButton")
- local empty_2 = Instance.new("TextButton")
- local brokem_2 = Instance.new("TextButton")
- local esp_2 = Instance.new("TextButton")
- fpsweird.Name = "fps weird"
- fpsweird.Parent = game.CoreGui
- fpsweird.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- activateframe.Name = "activateframe"
- activateframe.Parent = fpsweird
- activateframe.BackgroundColor3 = Color3.new(1, 1, 1)
- activateframe.Position = UDim2.new(0.0235017594, 0, 0.040133778, 0)
- activateframe.Size = UDim2.new(0, 209, 0, 254)
- activate.Name = "activate"
- activate.Parent = activateframe
- activate.BackgroundColor3 = Color3.new(1, 1, 1)
- activate.Position = UDim2.new(0.0340775475, 0, 0.0270323269, 0)
- activate.Size = UDim2.new(0, 193, 0, 241)
- activate.Font = Enum.Font.SourceSans
- activate.Text = "Activate Leg0 Haxx"
- activate.TextColor3 = Color3.new(0, 0, 0)
- activate.TextScaled = true
- activate.TextSize = 14
- activate.TextWrapped = true
- activate.MouseButton1Down:connect(function()
- fpsframe.Visible = true
- activateframe.Visible = false
- end)
- fpsframe.Name = "fpsframe"
- fpsframe.Parent = fpsweird
- fpsframe.Active = true
- fpsframe.BackgroundColor3 = Color3.new(0.321569, 0.847059, 0.87451)
- fpsframe.BackgroundTransparency = 0.40000000596046
- fpsframe.BorderColor3 = Color3.new(0.113725, 0.258824, 0.0705882)
- fpsframe.BorderSizePixel = 10
- fpsframe.Position = UDim2.new(0.315038443, 0, 0.153846145, 0)
- fpsframe.Selectable = true
- fpsframe.Size = UDim2.new(0, 272, 0, 368)
- fpsframe.Visible = false
- waa.Name = "waa"
- waa.Parent = fpsframe
- waa.BackgroundColor3 = Color3.new(0.203922, 0.462745, 0.584314)
- waa.BackgroundTransparency = 0.40000000596046
- waa.Size = UDim2.new(0, 272, 0, 64)
- ku.Name = "ku"
- ku.Parent = waa
- ku.BackgroundColor3 = Color3.new(1, 1, 1)
- ku.BackgroundTransparency = 1
- ku.Position = UDim2.new(0.00171869993, 0, -0.00253731012, 0)
- ku.Size = UDim2.new(0, 271, 0, 67)
- ku.Font = Enum.Font.SourceSans
- ku.Text = "i made this because im bored and put no effort into it"
- ku.TextColor3 = Color3.new(0, 0, 0)
- ku.TextScaled = true
- ku.TextSize = 14
- ku.TextWrapped = true
- esp.Name = "esp"
- esp.Parent = fpsframe
- esp.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- esp.BackgroundTransparency = 0.5
- esp.BorderSizePixel = 3
- esp.Position = UDim2.new(0.0288991928, 0, 0.632525086, 0)
- esp.Size = UDim2.new(0, 71, 0, 55)
- esp.Font = Enum.Font.SourceSans
- esp.Text = "ESP"
- esp.TextColor3 = Color3.new(0, 0, 0)
- esp.TextScaled = true
- esp.TextSize = 14
- esp.TextWrapped = true
- esp.MouseButton1Down:connect(function()
- -- -----------------------------------
- -- ___ _ _ _ --
- -- / __| ___| |_| |_(_)_ _ __ _ ___--
- -- \__ \/ -_) _| _| | ' \/ _` (_-<--
- -- |___/\___|\__|\__|_|_||_\__, /__/--
- -- |___/ --
- -- -----------------------------------
- -- -----------------------------------
- ALLYCOLOR = {0,255,255} --//Color of the ESP of people on the same team
- ENEMYCOLOR = {255,0,0} --//Color of the ESP of people on NOT the same team
- TRANSPARENCY = 0.5 --//Transparency of the ESP
- HEALTHBAR_ACTIVATED = true --//Renders the Healthbar
- --
- --
- -- !!!Don't Change Anything Below Here Unless You Know What You're Doing!!!
- function createFlex()
- -- -----------------------------------------------------------------------------------
- --[VARIABLES] //Changing may result in Errors!
- players = game:GetService("Players") --//Required for PF
- faces = {"Front","Back","Bottom","Left","Right","Top"} --//Every possible Enum face
- currentPlayer = nil --//Used for the Team-Check
- lplayer = players.LocalPlayer --//The LocalPlayer
- -- -----------------------------------------------------------------------------------
- players.PlayerAdded:Connect(function(p)
- currentPlayer = p
- p.CharacterAdded:Connect(function(character) --//For when a new Player joins the game
- createESP(character)
- end)
- end)
- -- -----------------------------------------------------------------------------------
- function checkPart(obj) if (obj:IsA("Part") or obj:IsA("MeshPart")) and obj.Name~="HumanoidRootPart" then return true end end --//Check if the Part is suitable
- -- -----------------------------------------------------------------------------------
- function actualESP(obj)
- for i=0,5 do
- surface = Instance.new("SurfaceGui",obj) --//Creates the SurfaceGui
- surface.Face = Enum.NormalId[faces[i+1]] --//Adjusts the Face and chooses from the face table
- surface.AlwaysOnTop = true
- frame = Instance.new("Frame",surface) --//Creates the viewable Frame
- frame.Size = UDim2.new(1,0,1,0)
- frame.BorderSizePixel = 0
- frame.BackgroundTransparency = TRANSPARENCY
- if currentPlayer.Team == players.LocalPlayer.Team then --//Checks the Players Team
- frame.BackgroundColor3 = Color3.new(ALLYCOLOR[1],ALLYCOLOR[2],ALLYCOLOR[3]) --//If in same Team
- else
- frame.BackgroundColor3 = Color3.new(ENEMYCOLOR[1],ENEMYCOLOR[2],ENEMYCOLOR[3]) --//If in another Team
- end
- end
- end
- -- -----------------------------------------------------------------------------------
- function createHealthbar(hrp)
- board =Instance.new("BillboardGui",hrp) --//Creates the BillboardGui with HumanoidRootPart as the Parent
- board.Name = "total"
- board.Size = UDim2.new(1,0,1,0)
- board.StudsOffset = Vector3.new(3,1,0)
- board.AlwaysOnTop = true
- bar = Instance.new("Frame",board) --//Creates the red background
- bar.BackgroundColor3 = Color3.new(255,0,0)
- bar.BorderSizePixel = 0
- bar.Size = UDim2.new(0.2,0,4,0)
- bar.Name = "total2"
- health = Instance.new("Frame",bar) --//Creates the changing green Frame
- health.BackgroundColor3 = Color3.new(0,255,0)
- health.BorderSizePixel = 0
- health.Size = UDim2.new(1,0,hrp.Parent.Humanoid.Health/100,0)
- hrp.Parent.Humanoid.Changed:Connect(function(property) --//Triggers when any Property changed
- hrp.total.total2.Frame.Size = UDim2.new(1,0,hrp.Parent.Humanoid.Health/100,0) --//Adjusts the size of the green Frame
- end)
- end
- -- -----------------------------------------------------------------------------------
- function createESP(c) --//Checks and calls the proper function
- bugfix = c:WaitForChild("Head") --// *Used so the children of the character arent nil.
- for i,v in pairs(c:GetChildren()) do
- if checkPart(v) then
- actualESP(v)
- end
- end
- if HEALTHBAR_ACTIVATED then --//If the user decided to
- createHealthbar(c:WaitForChild("HumanoidRootPart")) --//Calls the function of the creation
- end
- end
- -- -----------------------------------------------------------------------------------
- for i,people in pairs(players:GetChildren())do
- if people ~= players.LocalPlayer then
- currentPlayer = people
- --//Used for Players already in the Game
- createESP(people.Character)
- people.CharacterAdded:Connect(function(character)
- createESP(character)
- end)
- end
- end
- -- -----------------------------------------------------------------------------------
- end --//End of the entire function
- createFlex() --// Does exactly that :)
- end)
- aimbot.Name = "aimbot"
- aimbot.Parent = fpsframe
- aimbot.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- aimbot.BackgroundTransparency = 0.5
- aimbot.BorderSizePixel = 3
- aimbot.Position = UDim2.new(0.0325757265, 0, 0.423076987, 0)
- aimbot.Size = UDim2.new(0, 71, 0, 55)
- aimbot.Font = Enum.Font.SourceSans
- aimbot.Text = "Aimbot"
- aimbot.TextColor3 = Color3.new(0, 0, 0)
- aimbot.TextScaled = true
- aimbot.TextSize = 14
- aimbot.TextWrapped = true
- aimbot.MouseButton1Down:connect(function()
- loadstring(game:GetObjects('rbxassetid://340856112')[1].Source)()
- wait()
- _G.FREE_FOR_ALL = true
- _G.BIND = 50 -- LEFT CTRL
- _G.ESP_BIND = 52 -- LEFT ALT
- end)
- ctrlclickdel.Name = "ctrlclickdel"
- ctrlclickdel.Parent = fpsframe
- ctrlclickdel.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- ctrlclickdel.BackgroundTransparency = 0.5
- ctrlclickdel.BorderSizePixel = 3
- ctrlclickdel.Position = UDim2.new(0.683988988, 0, 0.421613753, 0)
- ctrlclickdel.Size = UDim2.new(0, 71, 0, 55)
- ctrlclickdel.Font = Enum.Font.SourceSans
- ctrlclickdel.Text = "CTRL CLICK Delete"
- ctrlclickdel.TextColor3 = Color3.new(0, 0, 0)
- ctrlclickdel.TextScaled = true
- ctrlclickdel.TextSize = 14
- ctrlclickdel.TextWrapped = true
- ctrlclickdel.MouseButton1Down:connect(function()
- local Plr = game:GetService("Players").LocalPlayer
- local Mouse = Plr:GetMouse()
- Mouse.Button1Down:connect(function()
- if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
- if not Mouse.Target then return end
- Mouse.Target:Destroy()
- end)
- end)
- infjump.Name = "infjump"
- infjump.Parent = fpsframe
- infjump.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- infjump.BackgroundTransparency = 0.5
- infjump.BorderSizePixel = 3
- infjump.Position = UDim2.new(0.033378765, 0, 0.21132949, 0)
- infjump.Size = UDim2.new(0, 71, 0, 55)
- infjump.Font = Enum.Font.SourceSans
- infjump.Text = "Infinite Jump"
- infjump.TextColor3 = Color3.new(0, 0, 0)
- infjump.TextScaled = true
- infjump.TextSize = 14
- infjump.TextWrapped = true
- infjump.MouseButton1Down:connect(function()
- local Player = game:GetService'Players'.LocalPlayer;
- local UIS = game:GetService'UserInputService';
- _G.JumpHeight = 50;
- function Action(Object, Function) if Object ~= nil then Function(Object); end end
- UIS.InputBegan:connect(function(UserInput)
- if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
- Action(Player.Character.Humanoid, function(self)
- if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
- Action(self.Parent.HumanoidRootPart, function(self)
- self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
- end)
- end
- end)
- end
- end)
- end)
- noc.Name = "noc"
- noc.Parent = fpsframe
- noc.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- noc.BackgroundTransparency = 0.5
- noc.BorderSizePixel = 3
- noc.Position = UDim2.new(0.684114039, 0, 0.208403081, 0)
- noc.Size = UDim2.new(0, 71, 0, 55)
- noc.Font = Enum.Font.SourceSans
- noc.Text = "Noclip"
- noc.TextColor3 = Color3.new(0, 0, 0)
- noc.TextScaled = true
- noc.TextSize = 14
- noc.TextWrapped = true
- noc.MouseButton1Down:connect(function()
- noclip = false
- game:GetService('RunService').Stepped:connect(function()
- if noclip then
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- plr = game.Players.LocalPlayer
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "e" then
- noclip = not noclip
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- print('Loaded')
- print('Press "E" to noclip')
- end)
- brokem.Name = "brokem"
- brokem.Parent = fpsframe
- brokem.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- brokem.BackgroundTransparency = 0.5
- brokem.BorderSizePixel = 3
- brokem.Position = UDim2.new(0.36413604, 0, 0.423076928, 0)
- brokem.Size = UDim2.new(0, 71, 0, 55)
- brokem.Font = Enum.Font.SourceSans
- brokem.Text = "Broken"
- brokem.TextColor3 = Color3.new(0, 0, 0)
- brokem.TextScaled = true
- brokem.TextSize = 14
- brokem.TextWrapped = true
- empty.Name = "empty"
- empty.Parent = fpsframe
- empty.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- empty.BackgroundTransparency = 0.5
- empty.BorderSizePixel = 3
- empty.Position = UDim2.new(0.683016419, 0, 0.632107019, 0)
- empty.Size = UDim2.new(0, 71, 0, 55)
- empty.Font = Enum.Font.SourceSans
- empty.Text = "Empty"
- empty.TextColor3 = Color3.new(0, 0, 0)
- empty.TextScaled = true
- empty.TextSize = 14
- empty.TextWrapped = true
- empty_2.Name = "empty"
- empty_2.Parent = fpsframe
- empty_2.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- empty_2.BackgroundTransparency = 0.5
- empty_2.BorderSizePixel = 3
- empty_2.Position = UDim2.new(0.363458067, 0, 0.632107019, 0)
- empty_2.Size = UDim2.new(0, 71, 0, 55)
- empty_2.Font = Enum.Font.SourceSans
- empty_2.Text = "Empty"
- empty_2.TextColor3 = Color3.new(0, 0, 0)
- empty_2.TextScaled = true
- empty_2.TextSize = 14
- empty_2.TextWrapped = true
- brokem_2.Name = "brokem"
- brokem_2.Parent = fpsframe
- brokem_2.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- brokem_2.BackgroundTransparency = 0.5
- brokem_2.BorderSizePixel = 3
- brokem_2.Position = UDim2.new(0.367812514, 0, 0.210911363, 0)
- brokem_2.Size = UDim2.new(0, 71, 0, 55)
- brokem_2.Font = Enum.Font.SourceSans
- brokem_2.Text = "Broken"
- brokem_2.TextColor3 = Color3.new(0, 0, 0)
- brokem_2.TextScaled = true
- brokem_2.TextSize = 14
- brokem_2.TextWrapped = true
- esp_2.Name = "esp"
- esp_2.Parent = fpsframe
- esp_2.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
- esp_2.BackgroundTransparency = 0.5
- esp_2.BorderSizePixel = 3
- esp_2.Position = UDim2.new(0.0325756073, 0, 0.820025086, 0)
- esp_2.Size = UDim2.new(0, 248, 0, 55)
- esp_2.Font = Enum.Font.SourceSans
- esp_2.Text = "destroy"
- esp_2.TextColor3 = Color3.new(0, 0, 0)
- esp_2.TextScaled = true
- esp_2.TextSize = 14
- esp_2.TextWrapped = true
- esp_2.MouseButton1Down:connect(function()
- fpsframe.Visible = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement