Advertisement
Itsyabroooo

Actual working noclip onlly r15 roblox

Mar 16th, 2020
683
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. --Working!
  2. --Warning NoClip is sensitive and is probably only working with R15 idk just enjoy please
  3. --Also please check out my YT > T***** uploads dry content
  4.  
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local Main = Instance.new("Frame")
  9. local NoClip = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12. local TextLabel_3 = Instance.new("TextLabel")
  13. local Frame = Instance.new("Frame")
  14. local Open = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = ScreenGui
  22. Main.BackgroundColor3 = Color3.fromRGB(115, 152, 255)
  23. Main.BorderSizePixel = 3
  24. Main.Position = UDim2.new(0.490410954, 0, 0.32470119, 0)
  25. Main.Size = UDim2.new(0, 245, 0, 184)
  26. Main.Visible = false
  27. Main.Active = true
  28. Main.Draggable = true
  29.  
  30. NoClip.Name = "NoClip"
  31. NoClip.Parent = Main
  32. NoClip.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. NoClip.BorderSizePixel = 4
  34. NoClip.Position = UDim2.new(0.0878948569, 0, 0.36213842, 0)
  35. NoClip.Size = UDim2.new(0, 200, 0, 50)
  36. NoClip.Font = Enum.Font.SourceSans
  37. NoClip.Text = "NoClip"
  38. NoClip.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. NoClip.TextScaled = true
  40. NoClip.TextSize = 14.000
  41. NoClip.TextWrapped = true
  42. NoClip.MouseButton1Down:connect(function()
  43. game:GetService("Players").LocalPlayer.Character.RightHand.Touched:connect(function(obj)
  44. if obj ~= workspace.Terrain then
  45. obj.CanCollide = false
  46. wait(1)
  47. obj.CanCollide = true
  48. end
  49. end)
  50. end)
  51.  
  52. TextLabel.Parent = Main
  53. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  54. TextLabel.BackgroundTransparency = 1.000
  55. TextLabel.Position = UDim2.new(0.0878948569, 0, 0.838363886, 0)
  56. TextLabel.Size = UDim2.new(0, 200, 0, 29)
  57. TextLabel.Font = Enum.Font.SourceSans
  58. TextLabel.Text = "--Only works in R15 And has some Bugs"
  59. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  60. TextLabel.TextSize = 14.000
  61.  
  62. TextLabel_2.Parent = Main
  63. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  64. TextLabel_2.BackgroundTransparency = 1.000
  65. TextLabel_2.BorderColor3 = Color3.fromRGB(68, 80, 188)
  66. TextLabel_2.BorderSizePixel = 3
  67. TextLabel_2.Position = UDim2.new(-0.00346660614, 0, 0.00404900312, 0)
  68. TextLabel_2.Size = UDim2.new(0, 245, 0, 36)
  69. TextLabel_2.Font = Enum.Font.SourceSans
  70. TextLabel_2.Text = "Noclip Gui"
  71. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  72. TextLabel_2.TextScaled = true
  73. TextLabel_2.TextSize = 14.000
  74. TextLabel_2.TextWrapped = true
  75.  
  76. TextLabel_3.Parent = Main
  77. TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  78. TextLabel_3.Position = UDim2.new(-0.00754818041, 0, 0.199701145, 0)
  79. TextLabel_3.Size = UDim2.new(0, 246, 0, 0)
  80. TextLabel_3.Font = Enum.Font.SourceSans
  81. TextLabel_3.Text = ""
  82. TextLabel_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  83. TextLabel_3.TextSize = 14.000
  84.  
  85. Frame.Parent = ScreenGui
  86. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  87. Frame.Position = UDim2.new(0.0657534152, 0, 0.691235065, 0)
  88. Frame.Size = UDim2.new(0, 100, 0, 34)
  89.  
  90. Open.Name = "Open"
  91. Open.Parent = Frame
  92. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  93. Open.Position = UDim2.new(-0.00999992341, 0, 0, 0)
  94. Open.Size = UDim2.new(0, 101, 0, 34)
  95. Open.Font = Enum.Font.SourceSans
  96. Open.Text = "Open"
  97. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  98. Open.TextScaled = true
  99. Open.TextSize = 14.000
  100. Open.TextWrapped = true
  101. Open.MouseButton1Down:connect(function()
  102. Frame.Visible = false
  103. Main.Visible = true
  104. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement