Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by: ItzPricex ItzPricex#1845
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Gui = Instance.new("ImageLabel")
- local WalkspeedB = Instance.new("TextButton")
- local NoclipB = Instance.new("TextButton")
- local ClickTpB = Instance.new("TextButton")
- local EspB = Instance.new("TextButton")
- local FlyB = Instance.new("TextButton")
- local InfJumpB = Instance.new("TextButton")
- local ArsenalGB = Instance.new("TextButton")
- local ArsenalGB_2 = Instance.new("TextButton")
- local MoreSoon1 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- Gui.Name = "Gui"
- Gui.Parent = ScreenGui
- Gui.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
- Gui.BackgroundTransparency = 1.000
- Gui.Position = UDim2.new(0.177993521, 0, 0.269230783, 0)
- Gui.Size = UDim2.new(0, 623, 0, 284)
- Gui.Image = "rbxassetid://3570695787"
- Gui.ImageColor3 = Color3.fromRGB(12, 12, 12)
- Gui.ScaleType = Enum.ScaleType.Slice
- Gui.SliceCenter = Rect.new(100, 100, 100, 100)
- Gui.SliceScale = 0.120
- Gui.Active = true
- Gui.Draggable = true
- WalkspeedB.Name = "WalkspeedB"
- WalkspeedB.Parent = Gui
- WalkspeedB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- WalkspeedB.Position = UDim2.new(0.0128410915, 0, 0.0563380271, 0)
- WalkspeedB.Size = UDim2.new(0, 192, 0, 50)
- WalkspeedB.Font = Enum.Font.AmaticSC
- WalkspeedB.Text = "Walspeed"
- WalkspeedB.TextColor3 = Color3.fromRGB(255, 255, 255)
- WalkspeedB.TextSize = 50.000
- WalkspeedB.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 40
- end)
- NoclipB.Name = "NolcipB"
- NoclipB.Parent = Gui
- NoclipB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- NoclipB.Position = UDim2.new(0.338683784, 0, 0.0563380308, 0)
- NoclipB.Size = UDim2.new(0, 200, 0, 50)
- NoclipB.Font = Enum.Font.AmaticSC
- NoclipB.Text = "Noclip [F]"
- NoclipB.TextColor3 = Color3.fromRGB(255, 255, 255)
- 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)
- ClickTpB.Name = "ClickTpB"
- ClickTpB.Parent = Gui
- ClickTpB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- ClickTpB.Position = UDim2.new(0.675762415, 0, 0.302816898, 0)
- ClickTpB.Size = UDim2.new(0, 192, 0, 50)
- ClickTpB.Font = Enum.Font.AmaticSC
- ClickTpB.Text = "Click TP Tool"
- ClickTpB.TextColor3 = Color3.fromRGB(255, 255, 255)
- ClickTpB.TextSize = 50.000
- ClickTpB.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)
- EspB.Name = "EspB"
- EspB.Parent = Gui
- EspB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- EspB.Position = UDim2.new(0.338683784, 0, 0.302816898, 0)
- EspB.Size = UDim2.new(0, 200, 0, 50)
- EspB.Font = Enum.Font.AmaticSC
- EspB.Text = "Esp"
- EspB.TextColor3 = Color3.fromRGB(255, 255, 255)
- 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)
- FlyB.Name = "FlyB"
- FlyB.Parent = Gui
- FlyB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- FlyB.Position = UDim2.new(0.675762415, 0, 0.0563380271, 0)
- FlyB.Size = UDim2.new(0, 192, 0, 50)
- FlyB.Font = Enum.Font.AmaticSC
- FlyB.Text = "Fly [E]"
- FlyB.TextColor3 = Color3.fromRGB(255, 255, 255)
- 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)
- InfJumpB.Name = "InfJumpB"
- InfJumpB.Parent = Gui
- InfJumpB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- InfJumpB.Position = UDim2.new(0.0128410915, 0, 0.302816898, 0)
- InfJumpB.Size = UDim2.new(0, 192, 0, 50)
- InfJumpB.Font = Enum.Font.AmaticSC
- InfJumpB.Text = "Infinity Jump"
- InfJumpB.TextColor3 = Color3.fromRGB(255, 255, 255)
- 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)
- MoreSoon1.Name = "MoreSoon1"
- MoreSoon1.Parent = Gui
- MoreSoon1.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- MoreSoon1.Position = UDim2.new(0.0128410915, 0, 0.0563380271, 0)
- MoreSoon1.Size = UDim2.new(0, 192, 0, 50)
- MoreSoon1.Font = Enum.Font.AmaticSC
- MoreSoon1.Text = "Exit Gui"
- MoreSoon1.TextColor3 = Color3.fromRGB(255, 255, 255)
- MoreSoon1.TextSize = 50.000
- MoreSoon1.MouseButton1Down:connect(function()
- Gui.Visible = false
- end)
- ArsenalGB.Name = "ArsenalGB"
- ArsenalGB.Parent = Gui
- ArsenalGB.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- ArsenalGB.Position = UDim2.new(0.0128410915, 0, 0.799295783, 0)
- ArsenalGB.Size = UDim2.new(0, 192, 0, 50)
- ArsenalGB.Font = Enum.Font.AmaticSC
- ArsenalGB.Text = "Arsenal GUI"
- ArsenalGB.TextColor3 = Color3.fromRGB(255, 255, 255)
- ArsenalGB.TextSize = 50.000
- ArsenalGB_2.Name = "ArsenalGB"
- ArsenalGB_2.Parent = Gui
- ArsenalGB_2.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- ArsenalGB_2.Position = UDim2.new(0.675762475, 0, 0.799295783, 0)
- ArsenalGB_2.Size = UDim2.new(0, 192, 0, 50)
- ArsenalGB_2.Font = Enum.Font.AmaticSC
- ArsenalGB_2.Text = "Jailbreak Auto F"
- ArsenalGB_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- ArsenalGB_2.TextSize = 50.000
- MoreSoon1.Name = "MoreSoon1"
- MoreSoon1.Parent = Gui
- MoreSoon1.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- MoreSoon1.Position = UDim2.new(0.338683784, 0, 0.799295783, 0)
- MoreSoon1.Size = UDim2.new(0, 200, 0, 50)
- MoreSoon1.Font = Enum.Font.AmaticSC
- MoreSoon1.Text = "Exit GUI"
- MoreSoon1.TextColor3 = Color3.fromRGB(199, 2, 2)
- MoreSoon1.TextSize = 50.000
Add Comment
Please, Sign In to add comment