Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Created By: iplayvlogs
- local NoclipHub = Instance.new("ScreenGui")
- local noclip = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local close = Instance.new("TextButton")
- local enable = Instance.new("TextButton")
- --Properties:
- NoclipHub.Name = "Noclip Hub"
- NoclipHub.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- noclip.Name = "noclip"
- noclip.Parent = NoclipHub
- noclip.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- noclip.Position = UDim2.new(0.139573067, 0, 0.478705257, 0)
- noclip.Size = UDim2.new(0, 234, 0, 136)
- title.Name = "title"
- title.Parent = noclip
- title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- title.BorderColor3 = Color3.fromRGB(27, 42, 53)
- title.Size = UDim2.new(0, 175, 0, 50)
- title.Font = Enum.Font.SciFi
- title.Text = "Noclip Hub"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.TextScaled = true
- title.TextSize = 14.000
- title.TextWrapped = true
- close.Name = "close"
- close.Parent = noclip
- close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- close.Position = UDim2.new(0.747863233, 0, 0, 0)
- close.Size = UDim2.new(0, 59, 0, 50)
- close.Font = Enum.Font.SourceSans
- close.Text = "X"
- close.TextColor3 = Color3.fromRGB(0, 0, 0)
- close.TextScaled = true
- close.TextSize = 14.000
- close.TextWrapped = true
- close.MouseButton1Down:connect(function()
- noclip.Visible = false
- end)
- enable.Name = "enable"
- enable.Parent = noclip
- enable.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- enable.Position = UDim2.new(0, 0, 0.367647052, 0)
- enable.Size = UDim2.new(0, 234, 0, 86)
- enable.Font = Enum.Font.SourceSans
- enable.Text = "Enable Noclip"
- enable.TextColor3 = Color3.fromRGB(255, 255, 255)
- enable.TextScaled = true
- enable.TextSize = 14.000
- enable.TextWrapped = true
- enable.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 == "v" then
- noclip = not noclip
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- enable.Text = "Press V to Noclip/Clip"
- enable.TextSize = 10.000
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement