Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DaHoodGui = Instance.new("ScreenGui")
- OpenButton = Instance.new("TextButton")
- CloseButton = Instance.new("TextButton")
- Main = Instance.new("Frame")
- Title = Instance.new("TextLabel")
- WalkspeedQ = Instance.new("TextButton")
- NoclipB = Instance.new("TextButton")
- RemoveAll = Instance.new("TextButton")
- GravityON = Instance.new("TextButton")
- Godmode = Instance.new("TextButton")
- GravityOFF = Instance.new("TextButton")
- BTools = Instance.new("TextButton")
- InfiniteJump = Instance.new("TextButton")
- InputPlayer = Instance.new("TextBox")
- GotoPlayer = Instance.new("TextButton")
- local OpenTP_2 = Instance.new("TextButton")
- local CloseFAST = Instance.new("TextButton")
- local EspStatus = Instance.new("TextLabel")
- local st1 = Instance.new("TextLabel")
- local st1_2 = Instance.new("TextLabel")
- local st1_3 = Instance.new("TextLabel")
- local Name = Instance.new("TextLabel")
- local Move = Instance.new("Frame")
- DaHoodGui.Name = "Da Hood Gui"
- DaHoodGui.Parent = game.CoreGui
- OpenButton.Name = "OpenButton"
- OpenButton.Parent = DaHoodGui
- OpenButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- OpenButton.BorderSizePixel = 0
- OpenButton.Position = UDim2.new(0, 0, 0.640625, 0)
- OpenButton.Size = UDim2.new(0, 139, 0, 50)
- OpenButton.Font = Enum.Font.Cartoon
- OpenButton.FontSize = Enum.FontSize.Size14
- OpenButton.Text = "OPEN"
- OpenButton.TextColor3 = Color3.new(1, 1, 1)
- OpenButton.TextScaled = true
- OpenButton.TextSize = 14
- OpenButton.TextWrapped = true
- OpenButton.MouseButton1Down:connect(function()
- Main.Visible = true
- CloseButton.Visible = true
- OpenButton.Visible = false
- end)
- CloseButton.Name = "CloseButton"
- CloseButton.Parent = DaHoodGui
- CloseButton.Visible = false
- CloseButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- CloseButton.BorderSizePixel = 0
- CloseButton.Position = UDim2.new(0, 0, 0.640625, 0)
- CloseButton.Size = UDim2.new(0, 139, 0, 50)
- CloseButton.Font = Enum.Font.Cartoon
- CloseButton.FontSize = Enum.FontSize.Size14
- CloseButton.Text = "CLOSE"
- CloseButton.TextColor3 = Color3.new(1, 1, 1)
- CloseButton.TextScaled = true
- CloseButton.TextSize = 14
- CloseButton.TextWrapped = true
- CloseButton.MouseButton1Down:connect(function()
- Main.Visible = false
- CloseButton.Visible = false
- OpenButton.Visible = true
- end)
- Main.Name = "Main"
- Main.Parent = DaHoodGui
- Main.Draggable = true
- Main.Active = true
- Main.Visible = false
- Main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Main.BorderSizePixel = 0
- Main.BackgroundTransparency = 0.69999998807907
- Main.Position = UDim2.new(0.187782809, 0, 0.0809327811, 0)
- Main.Size = UDim2.new(0, 652, 0, 500)
- Title.Name = "Title"
- Title.Parent = Main
- Title.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Title.BorderSizePixel = 0
- Title.Size = UDim2.new(0, 652, 0, 50)
- Title.Font = Enum.Font.SourceSansBold
- Title.FontSize = Enum.FontSize.Size48
- Title.Text = "Created by Tay-K#2778"
- Title.TextColor3 = Color3.new(1, 1, 1)
- Title.TextSize = 40
- Title.TextWrapped = true
- WalkspeedQ.Name = "WalkspeedQ"
- WalkspeedQ.Parent = Main
- WalkspeedQ.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- WalkspeedQ.BorderSizePixel = 0
- WalkspeedQ.Position = UDim2.new(0.0178603820, 0, 0.112641335, 0)
- WalkspeedQ.Size = UDim2.new(0, 300, 0, 50)
- WalkspeedQ.Font = Enum.Font.Bodoni
- WalkspeedQ.FontSize = Enum.FontSize.Size32
- WalkspeedQ.Text = "SpeedHax [Q]"
- WalkspeedQ.TextColor3 = Color3.new(1, 1, 1)
- WalkspeedQ.TextSize = 30
- WalkspeedQ.MouseButton1Down:connect(function()
- local walkspeedplayer = game:GetService("Players").LocalPlayer
- local walkspeedmouse = walkspeedplayer:GetMouse()
- local walkspeedenabled = false
- function x_walkspeed(key)
- if (key == "q") then
- if walkspeedenabled == false then
- _G.WS = 200;
- local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
- Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
- Humanoid.WalkSpeed = _G.WS;
- end)
- Humanoid.WalkSpeed = _G.WS;
- walkspeedenabled = true
- elseif walkspeedenabled == true then
- _G.WS = 20;
- local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
- Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
- Humanoid.WalkSpeed = _G.WS;
- end)
- Humanoid.WalkSpeed = _G.WS;
- walkspeedenabled = false
- end
- end
- end
- walkspeedmouse.KeyDown:connect(x_walkspeed)
- end)
- NoclipB.Name = "NoclipB"
- NoclipB.Parent = Main
- NoclipB.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- NoclipB.BorderSizePixel = 0
- NoclipB.Position = UDim2.new(0.0178603820, 0, 0.212641335, 0)
- NoclipB.Size = UDim2.new(0, 300, 0, 50)
- NoclipB.Font = Enum.Font.Bodoni
- NoclipB.FontSize = Enum.FontSize.Size32
- NoclipB.Text = "Noclip [B]"
- NoclipB.TextColor3 = Color3.new(1, 1, 1)
- NoclipB.TextSize = 30
- NoclipB.MouseButton1Down:connect(function()
- local noclipplayer = game:GetService("Players").LocalPlayer
- local noclipmouse = noclipplayer:GetMouse()
- local donoclip = false
- local noclip = false
- function b_noclip(key)
- if (key == "b") then
- if noclip == false then
- donoclip = true
- noclip = true
- elseif noclip == true then
- donoclip = false
- noclip = false
- end
- end
- end
- noclipmouse.KeyDown:connect(b_noclip)
- game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
- if obj ~= workspace.Terrain then
- if donoclip == true then
- obj.CanCollide = false
- else
- obj.CanCollide = true
- end
- end
- end)
- end)
- GravityON.Name = "Gravity ON"
- GravityON.Parent = Main
- GravityON.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- GravityON.BorderSizePixel = 0
- GravityON.Position = UDim2.new(0.0178603820, 0, 0.312641335, 0)
- GravityON.Size = UDim2.new(0, 300, 0, 50)
- GravityON.Font = Enum.Font.Bodoni
- GravityON.FontSize = Enum.FontSize.Size32
- GravityON.Text = "Gravity: ON"
- GravityON.TextColor3 = Color3.new(1, 1, 1)
- GravityON.TextSize = 30
- GravityON.MouseButton1Down:connect(function()
- game.Workspace.Gravity = 196.2
- GravityOFF.Visible = true
- GravityON.Visible = false
- end)
- Godmode.Name = "Godmode-Sorta Works"
- Godmode.Parent = Main
- Godmode.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Godmode.BorderSizePixel = 0
- Godmode.Position = UDim2.new(0.0178603820, 0, 0.412641335, 0)
- Godmode.Size = UDim2.new(0, 300, 0, 50)
- Godmode.Font = Enum.Font.Bodoni
- Godmode.FontSize = Enum.FontSize.Size32
- Godmode.Text = "Godmode-Sorta Works"
- Godmode.TextColor3 = Color3.new(1, 1, 1)
- Godmode.TextSize = 30
- Godmode.MouseButton1Down:connect(function()
- game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
- local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
- l.Parent = game:GetService("Players").LocalPlayer.Character
- l.Name = "Humanoid"
- wait(0.1)
- game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
- game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
- game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
- wait(0.1)
- game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
- game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
- end)
- GravityOFF.Name = "Gravity OFF"
- GravityOFF.Parent = Main
- GravityOFF.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- GravityOFF.BorderSizePixel = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement