Advertisement
ProjectSmall

TpPlanks

Dec 6th, 2019
3,716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  2. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  3. if Plank.Owner.Value == game.Players.LocalPlayer then
  4. spawn(function()
  5. for i=1,2 do
  6. wait()
  7. Plank:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  8. end
  9. end)
  10. spawn(function()
  11. for i=1,30 do
  12. wait()
  13. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  14. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Plank.WoodSection)
  15. end
  16. end)
  17. end
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement