Advertisement
rexscripts

Tsunami Survival script – (Money Farm)

Mar 3rd, 2022
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. local Amt = 4
  2. local WaitTime = 7
  3.  
  4.  
  5. local hrp = game.Players.LocalPlayer.Character.HumanoidRootPart
  6. local wp = game:GetService("Workspace").ScriptImportance.WinnersTunnel.WinnersPart
  7.  
  8. --print((Amt * WaitTime) + (Amt * 3) .. "s Is how long you will wait")
  9.  
  10.  
  11. for i = 1, Amt, 1 do
  12.  
  13. local ts = game:GetService("TweenService")
  14. local ti = TweenInfo.new(3, Enum.EasingStyle.Linear)
  15. local tween = ts:Create(game:GetService("Players")["LocalPlayer"].Character.HumanoidRootPart, ti, {CFrame = CFrame.new(game:GetService("Workspace").ScriptImportance.WinnersTunnel.WinnersPart.Position)})
  16.  
  17.  
  18. tween:Play()
  19.  
  20. tween.Completed:Wait()
  21.  
  22. wait(WaitTime)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement