Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui and script made by: Broken_Heart#9999 - discord
- -- Gui made by Broken_Heart#9999 - discord
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local label = Instance.new("TextLabel")
- local WalkspeedB = Instance.new("TextButton")
- local NoclipB = Instance.new("TextButton")
- local TpToolB = Instance.new("TextButton")
- local InfJumpB = Instance.new("TextButton")
- local FlyB = Instance.new("TextButton")
- local EspB = Instance.new("TextButton")
- local ArsenalGuiB = Instance.new("TextButton")
- local JailbreakARB = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(53, 53, 53)
- main.Position = UDim2.new(0.283726364, 0, 0.287625521, 0)
- main.Size = UDim2.new(0, 529, 0, 279)
- main.Active = true
- main.Draggable = true
- label.Name = "label"
- label.Parent = main
- label.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
- label.Size = UDim2.new(0, 529, 0, 55)
- label.Font = Enum.Font.Ubuntu
- label.Text = "Gui made by: Broken_Heart#1006"
- label.TextColor3 = Color3.fromRGB(255, 255, 255)
- label.TextSize = 27.000
- WalkspeedB.Name = "WalkspeedB"
- WalkspeedB.Parent = main
- WalkspeedB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- WalkspeedB.Position = UDim2.new(0, 0, 0.222627744, 0)
- WalkspeedB.Size = UDim2.new(0, 200, 0, 50)
- WalkspeedB.Font = Enum.Font.AmaticSC
- WalkspeedB.Text = "Walk speed"
- WalkspeedB.TextColor3 = Color3.fromRGB(111, 155, 209)
- WalkspeedB.TextSize = 50.000
- WalkspeedB.MouseButton1Down:connect(function()
- game.Workspace.Yarkoslav15243.Humanoid.WalkSpeed = 30
- end)
- NoclipB.Name = "NoclipB"
- NoclipB.Parent = main
- NoclipB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- NoclipB.Position = UDim2.new(0.621928155, 0, 0.222627744, 0)
- NoclipB.Size = UDim2.new(0, 200, 0, 50)
- NoclipB.Font = Enum.Font.AmaticSC
- NoclipB.Text = "Noclip [F]"
- NoclipB.TextColor3 = Color3.fromRGB(111, 155, 209)
- NoclipB.TextSize = 50.000
- NoclipB.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 == "f" then
- noclip = not noclip
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- print('Loaded')
- print('Press "F" to noclip')
- end)
- TpToolB.Name = "TpToolB"
- TpToolB.Parent = main
- TpToolB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- TpToolB.Position = UDim2.new(0.41398865, 0, 0.222627729, 0)
- TpToolB.Size = UDim2.new(0, 90, 0, 50)
- TpToolB.Font = Enum.Font.AmaticSC
- TpToolB.Text = "Tp tool"
- TpToolB.TextColor3 = Color3.fromRGB(111, 155, 209)
- TpToolB.TextSize = 50.000
- TpToolB.MouseButton1Down:connect(function()
- mouse = game.Players.LocalPlayer:GetMouse()
- tool = Instance.new("Tool")
- tool.RequiresHandle = false
- tool.Name = "Click TP"
- tool.Activated:connect(function()
- local pos = mouse.Hit+Vector3.new(0,2.5,0)
- pos = CFrame.new(pos.X,pos.Y,pos.Z)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
- end)
- tool.Parent = game.Players.LocalPlayer.Backpack
- end)
- InfJumpB.Name = "InfJumpB"
- InfJumpB.Parent = main
- InfJumpB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- InfJumpB.Position = UDim2.new(0, 0, 0.496350378, 0)
- InfJumpB.Size = UDim2.new(0, 200, 0, 50)
- InfJumpB.Font = Enum.Font.AmaticSC
- InfJumpB.Text = "Infinity jump"
- InfJumpB.TextColor3 = Color3.fromRGB(111, 155, 209)
- InfJumpB.TextSize = 50.000
- InfJumpB.MouseButton1Down:connect(function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
- InfiniteJump.Position = UDim2.new(0,10,0,130)
- InfiniteJump.Size = UDim2.new(0,150,0,30)
- InfiniteJump.MouseButton1Click:connect(function()
- local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
- local new = state == "Off" and "On" or state == "On" and "Off"
- InfiniteJumpEnabled = new == "On"
- InfiniteJump.Text = "Infinite Jump: " .. new
- end)
- end)
- FlyB.Name = "FlyB"
- FlyB.Parent = main
- FlyB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- FlyB.Position = UDim2.new(0.621928155, 0, 0.496350378, 0)
- FlyB.Size = UDim2.new(0, 200, 0, 50)
- FlyB.Font = Enum.Font.AmaticSC
- FlyB.Text = "Fly [E]"
- FlyB.TextColor3 = Color3.fromRGB(111, 155, 209)
- FlyB.TextSize = 50.000
- FlyB.MouseButton1Down:connect(function()
- repeat wait()
- until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
- local mouse = game.Players.LocalPlayer:GetMouse()
- repeat wait() until mouse
- local plr = game.Players.LocalPlayer
- local torso = plr.Character.Head
- local flying = false
- local deb = true
- local ctrl = {f = 0, b = 0, l = 0, r = 0}
- local lastctrl = {f = 0, b = 0, l = 0, r = 0}
- local maxspeed = 400
- local speed = 5000
- function Fly()
- local bg = Instance.new("BodyGyro", torso)
- bg.P = 9e4
- bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- bg.cframe = torso.CFrame
- local bv = Instance.new("BodyVelocity", torso)
- bv.velocity = Vector3.new(0,0.1,0)
- bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
- repeat wait()
- plr.Character.Humanoid.PlatformStand = true
- if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
- speed = speed+.5+(speed/maxspeed)
- if speed > maxspeed then
- speed = maxspeed
- end
- elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
- speed = speed-1
- if speed < 0 then
- speed = 0
- end
- end
- if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
- elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
- until not flying
- ctrl = {f = 0, b = 0, l = 0, r = 0}
- lastctrl = {f = 0, b = 0, l = 0, r = 0}
- speed = 0
- bg:Destroy()
- bv:Destroy()
- plr.Character.Humanoid.PlatformStand = false
- end
- mouse.KeyDown:connect(function(key)
- if key:lower() == "e" then
- if flying then flying = false
- else
- flying = true
- Fly()
- end
- elseif key:lower() == "w" then
- ctrl.f = 1
- elseif key:lower() == "s" then
- ctrl.b = -1
- elseif key:lower() == "a" then
- ctrl.l = -1
- elseif key:lower() == "d" then
- ctrl.r = 1
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 0
- elseif key:lower() == "s" then
- ctrl.b = 0
- elseif key:lower() == "a" then
- ctrl.l = 0
- elseif key:lower() == "d" then
- ctrl.r = 0
- end
- end)
- Fly()
- end)
- EspB.Name = "EspB"
- EspB.Parent = main
- EspB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- EspB.Position = UDim2.new(0.41398865, 0, 0.496350348, 0)
- EspB.Size = UDim2.new(0, 90, 0, 50)
- EspB.Font = Enum.Font.AmaticSC
- EspB.Text = "Esp"
- EspB.TextColor3 = Color3.fromRGB(111, 155, 209)
- EspB.TextSize = 50.000
- EspB.MouseButton1Down:connect(function()
- local gui = Instance.new("BillboardGui");
- gui.Name = "";
- gui.AlwaysOnTop = true;
- gui.LightInfluence = 0;
- gui.Size = UDim2.new(1.75, 0, 1.75, 0);
- local frame = Instance.new("Frame", gui);
- frame.BackgroundColor3 = Color3.fromRGB(170, 0, 0);
- frame.Size = UDim2.new(1, 0, 1, 0);
- frame.BorderSizePixel = 4;
- frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
- local gi = gui:Clone();
- local body = frame:Clone();
- body.Parent = gi;
- body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
- for _, v in pairs(game:GetService("Players"):GetPlayers()) do
- if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
- gui:Clone().Parent = v.Character.Head;
- end
- end
- end)
- ArsenalGuiB.Name = "ArsenalGuiB"
- ArsenalGuiB.Parent = main
- ArsenalGuiB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- ArsenalGuiB.Position = UDim2.new(0, 0, 0.818930984, 0)
- ArsenalGuiB.Size = UDim2.new(0, 219, 0, 50)
- ArsenalGuiB.Font = Enum.Font.AmaticSC
- ArsenalGuiB.Text = "Arsenal GUI"
- ArsenalGuiB.TextColor3 = Color3.fromRGB(209, 32, 43)
- ArsenalGuiB.TextSize = 50.000
- ArsenalGuiB.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/NougatBitz/ArsenalHaxx/master/Script"))();
- end)
- JailbreakARB.Name = "JailbreakARB"
- JailbreakARB.Parent = main
- JailbreakARB.BackgroundColor3 = Color3.fromRGB(95, 95, 95)
- JailbreakARB.Position = UDim2.new(0.584120989, 0, 0.818930984, 0)
- JailbreakARB.Size = UDim2.new(0, 220, 0, 50)
- JailbreakARB.Font = Enum.Font.AmaticSC
- JailbreakARB.Text = "Jailbreak Auto rob"
- JailbreakARB.TextColor3 = Color3.fromRGB(209, 32, 43)
- JailbreakARB.TextSize = 50.000
- JailbreakARB.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://3473939051")[1].Source)()
- end)
Add Comment
Please, Sign In to add comment