Advertisement
SimulatedAce

Roblox surf script

Apr 11th, 2021
1,901
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. -- PRESS AND HOLD Q TO ENABLE NOCLIP
  2. local cool = game.Workspace.Model
  3. game:GetService("UserInputService").InputBegan:Connect(function(i, gpe)
  4. if not gpe and i.KeyCode == Enum.KeyCode.Q then
  5. for _,v in pairs(game.Workspace:GetChildren()) do
  6. if v:IsA("Model") and v.PrimaryPart == nil and v.Name ~= 'Model' then
  7. do cool.Parent = v
  8. end
  9. end
  10. end
  11. end
  12. end)
  13. game:GetService("UserInputService").InputEnded:Connect(function(i, gpe)
  14. if not gpe and i.KeyCode == Enum.KeyCode.Q then
  15. do cool.Parent = game.Workspace
  16. end
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement