Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- HACK Roblox
- --
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local TextLabel = Instance.new("TextLabel")
- local TP2 = Instance.new("TextButton")
- local UICorner_2 = Instance.new("UICorner")
- local TP3 = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- local TP1 = Instance.new("TextButton")
- local UICorner_4 = Instance.new("UICorner")
- local TP4 = Instance.new("TextButton")
- local UICorner_5 = Instance.new("UICorner")
- local TP5 = Instance.new("TextButton")
- local UICorner_6 = Instance.new("UICorner")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
- Frame.Position = UDim2.new(0.821544051, 0, 0.371607572, 0)
- Frame.Size = UDim2.new(0, 177, 0, 291)
- UICorner.Parent = Frame
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.BorderColor3 = Color3.fromRGB(27, 42, 53)
- TextLabel.Position = UDim2.new(0.0790960416, 0, 0, 0)
- TextLabel.Size = UDim2.new(0, 149, 0, 14)
- TextLabel.Font = Enum.Font.JosefinSans
- TextLabel.Text = "@guys_Buffalo"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextSize = 14.000
- TP2.Name = "TP2"
- TP2.Parent = Frame
- TP2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TP2.Position = UDim2.new(0.124293782, 0, 0.260419488, 0)
- TP2.Size = UDim2.new(0, 141, 0, 23)
- TP2.Font = Enum.Font.SourceSans
- TP2.Text = "speed"
- TP2.TextColor3 = Color3.fromRGB(0, 0, 0)
- TP2.TextSize = 14.000
- TP2.MouseButton1Down:connect(function()
- speed = 100
- function onPlayerRespawned(character)
- wait(1)
- local player = game.Players:GetPlayerFromCharacter(character)
- local human = character:findFirstChild("Humanoid")
- if player ~= nil and human ~= nil then
- human.WalkSpeed = speed
- end
- end
- game.Workspace.ChildAdded:connect(onPlayerRespawned)
- end)
- UICorner_2.Parent = TP2
- TP3.Name = "TP3"
- TP3.Parent = Frame
- TP3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TP3.Position = UDim2.new(0.124293782, 0, 0.426771343, 0)
- TP3.Size = UDim2.new(0, 141, 0, 23)
- TP3.Font = Enum.Font.SourceSans
- TP3.Text = " jump"
- TP3.TextColor3 = Color3.fromRGB(0, 0, 0)
- TP3.TextSize = 14.000
- TP3.MouseButton1Down:connect(function()
- local newJumpPower = 100
- game.Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(character)
- character:WaitForChild("Humanoid").JumpPower = newJumpPower
- end)
- end)
- end)
- UICorner_3.Parent = TP3
- TP1.Name = "TP1"
- TP1.Parent = Frame
- TP1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TP1.Position = UDim2.new(0.124293782, 0, 0.0881567895, 0)
- TP1.Size = UDim2.new(0, 141, 0, 23)
- TP1.Font = Enum.Font.SourceSans
- TP1.Text = "FLY"
- TP1.TextColor3 = Color3.fromRGB(0, 0, 0)
- TP1.TextSize = 14.000
- TP1.MouseButton1Down:connect(function()
- script.Parent = game.StarterPack
- repeat wait() -- Real Credit TheDominusGramer_YT3
- 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() == "f" 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)
- UICorner_4.Parent = TP1
- TP4.Name = "TP4"
- TP4.Parent = Frame
- TP4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TP4.Position = UDim2.new(0.124293782, 0, 0.58828336, 0)
- TP4.Size = UDim2.new(0, 141, 0, 23)
- TP4.Font = Enum.Font.SourceSans
- TP4.Text = "Btools"
- TP4.TextColor3 = Color3.fromRGB(0, 0, 0)
- TP4.TextSize = 14.000
- TP4.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/BTools.txt"))()
- end)
- UICorner_5.Parent = TP4
- TP5.Name = "TP5"
- TP5.Parent = Frame
- TP5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TP5.Position = UDim2.new(0.0790960416, 0, 0.777286828, 0)
- TP5.Size = UDim2.new(0, 157, 0, 47)
- TP5.Font = Enum.Font.SourceSans
- TP5.Text = "Click Teleport"
- TP5.TextColor3 = Color3.fromRGB(0, 0, 0)
- TP5.TextSize = 31.000
- TP5.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Click Teleport.txt"))()
- end)
- UICorner_6.Parent = TP5
Add Comment
Please, Sign In to add comment