Advertisement
SimulatedAce

Surf Script Press q and hold to use

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