Advertisement
TurtleWars

Noclip Hub

Jul 26th, 2020 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. -- Created By: iplayvlogs
  2.  
  3. local NoclipHub = Instance.new("ScreenGui")
  4. local noclip = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local close = Instance.new("TextButton")
  7. local enable = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. NoclipHub.Name = "Noclip Hub"
  12. NoclipHub.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. noclip.Name = "noclip"
  15. noclip.Parent = NoclipHub
  16. noclip.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  17. noclip.Position = UDim2.new(0.139573067, 0, 0.478705257, 0)
  18. noclip.Size = UDim2.new(0, 234, 0, 136)
  19.  
  20. title.Name = "title"
  21. title.Parent = noclip
  22. title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  23. title.BorderColor3 = Color3.fromRGB(27, 42, 53)
  24. title.Size = UDim2.new(0, 175, 0, 50)
  25. title.Font = Enum.Font.SciFi
  26. title.Text = "Noclip Hub"
  27. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  28. title.TextScaled = true
  29. title.TextSize = 14.000
  30. title.TextWrapped = true
  31.  
  32. close.Name = "close"
  33. close.Parent = noclip
  34. close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  35. close.Position = UDim2.new(0.747863233, 0, 0, 0)
  36. close.Size = UDim2.new(0, 59, 0, 50)
  37. close.Font = Enum.Font.SourceSans
  38. close.Text = "X"
  39. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. close.TextScaled = true
  41. close.TextSize = 14.000
  42. close.TextWrapped = true
  43. close.MouseButton1Down:connect(function()
  44. noclip.Visible = false
  45. end)
  46.  
  47. enable.Name = "enable"
  48. enable.Parent = noclip
  49. enable.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  50. enable.Position = UDim2.new(0, 0, 0.367647052, 0)
  51. enable.Size = UDim2.new(0, 234, 0, 86)
  52. enable.Font = Enum.Font.SourceSans
  53. enable.Text = "Enable Noclip"
  54. enable.TextColor3 = Color3.fromRGB(255, 255, 255)
  55. enable.TextScaled = true
  56. enable.TextSize = 14.000
  57. enable.TextWrapped = true
  58. enable.MouseButton1Down:connect(function()
  59. noclip = false
  60. game:GetService('RunService').Stepped:connect(function()
  61. if noclip then
  62. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  63. end
  64. end)
  65. plr = game.Players.LocalPlayer
  66. mouse = plr:GetMouse()
  67. mouse.KeyDown:connect(function(key)
  68.  
  69. if key == "v" then
  70. noclip = not noclip
  71. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  72. end
  73. end)
  74. enable.Text = "Press V to Noclip/Clip"
  75. enable.TextSize = 10.000
  76. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement