Noclip


SUBMITTED BY: Guest

DATE: March 12, 2021, 7:32 p.m.

FORMAT: Text only

SIZE: 3.3 kB

HITS: 375

  1. -- Designed & Scripted By ScousePotMongs --
  2. -- Discord: Brother Omar#9562 --
  3. local Noclip = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Title = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local FullNoclip = Instance.new("TextButton")
  8. local Console = Instance.new("TextLabel")
  9. Noclip.Name = "Noclip"
  10. Noclip.Parent = game.CoreGui
  11. Noclip.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. Main.Name = "Main"
  13. Main.Parent = Noclip
  14. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  15. Main.BackgroundTransparency = 0.25
  16. Main.BorderColor3 = Color3.new(0.333333, 0, 1)
  17. Main.BorderSizePixel = 2
  18. Main.Position = UDim2.new(0.411496341, 0, 0.728652716, 0)
  19. Main.Size = UDim2.new(0.17609489, 0, 0.151802659, 0)
  20. Main.Active = true
  21. Main.Draggable = true
  22. Title.Name = "Title"
  23. Title.Parent = Main
  24. Title.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  25. Title.BackgroundTransparency = 0.25
  26. Title.BorderColor3 = Color3.new(0.333333, 0, 1)
  27. Title.BorderSizePixel = 2
  28. Title.Position = UDim2.new(0.00217006868, 0, -0.405953586, 0)
  29. Title.Size = UDim2.new(1, 0, 0.400000006, 0)
  30. TextLabel.Parent = Title
  31. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextLabel.BackgroundTransparency = 1
  33. TextLabel.Size = UDim2.new(0.994818628, 0, 1, 0)
  34. TextLabel.Font = Enum.Font.SourceSansItalic
  35. TextLabel.Text = "NoClip"
  36. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  37. TextLabel.TextScaled = true
  38. TextLabel.TextSize = 14
  39. TextLabel.TextWrapped = true
  40. FullNoclip.Name = "FullNoclip"
  41. FullNoclip.Parent = Main
  42. FullNoclip.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902)
  43. FullNoclip.BackgroundTransparency = 0.60000002384186
  44. FullNoclip.BorderSizePixel = 0
  45. FullNoclip.Position = UDim2.new(0, 0, 0.1875, 0)
  46. FullNoclip.Size = UDim2.new(1, 0, 0.275000006, 0)
  47. FullNoclip.Font = Enum.Font.SourceSans
  48. FullNoclip.Text = " Toggle Noclip >>"
  49. FullNoclip.TextColor3 = Color3.new(1, 1, 1)
  50. FullNoclip.TextScaled = true
  51. FullNoclip.TextSize = 14
  52. FullNoclip.TextWrapped = true
  53. FullNoclip.TextXAlignment = Enum.TextXAlignment.Left
  54. Console.Name = "Console"
  55. Console.Parent = Main
  56. Console.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902)
  57. Console.BackgroundTransparency = 0.60000002384186
  58. Console.Position = UDim2.new(0.00217006868, 0, 0.574999988, 0)
  59. Console.Size = UDim2.new(1, 0, 0.275000006, 0)
  60. Console.Font = Enum.Font.SourceSans
  61. Console.Text = " Status: Ready To Use "
  62. Console.TextColor3 = Color3.new(0, 1, 0)
  63. Console.TextScaled = true
  64. Console.TextSize = 14
  65. Console.TextWrapped = true
  66. Console.TextXAlignment = Enum.TextXAlignment.Left
  67. FullNoclip.MouseButton1Click:connect(function()
  68. if Console.Text == " Status: Ready To Use " then
  69. noclip = true
  70. Console.Text = " Status: On "
  71. Console.TextColor3 = Color3.new(0,185,0)
  72. game:GetService('RunService').Stepped:connect(function()
  73. if noclip then
  74. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  75. end
  76. end)
  77. elseif Console.Text == " Status: On " then
  78. noclip = false
  79. Console.Text = " Status: Off "
  80. Console.TextColor3 = Color3.new(170,0,0)
  81. elseif Console.Text == " Status: Off " then
  82. noclip = true
  83. Console.Text = " Status: On "
  84. Console.TextColor3 = Color3.new(0,185,0)
  85. end
  86. end)

comments powered by Disqus