Advertisement
DevsPortal

New Noclip GUI 29/03/2020

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