Advertisement
eanyus7a

rush script

Dec 26th, 2022
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. local Rush = game.ReplicateStorage.Rush -- put rush model in workspace and replicate Storage
  2. local Point = game.Workspace.Rooms:FindFirstChild("2") -- make sure make a room before doing this!
  3.  
  4. script.Parent.Touched:Connect(function(Hit)
  5.  
  6. if Hit.Parent:FindFirstChild("Humanoid") then
  7. Rush.Parent = game.Workspace
  8. Rush:WaitForChild("Humanoid"):MoveTo(Point.Position)
  9.  
  10. Rush:WaitForChild("Humanoid").MoveToFinsihed:Wait()
  11.  
  12. Rush:Destroy()
  13. end
  14. end)
  15.  
  16.  
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement