Advertisement
Guest User

Booga Booga

a guest
Feb 25th, 2018
2,111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. Released-Synodel
  2. --1. Get your axe out
  3. --2. Execute script
  4. --3. Hit what ever tp'd to you
  5. --4. YOU GET BUNCH OF XP
  6.  
  7. --Teleports Small Trees
  8. while wait(.50) do
  9. for i, v in pairs(workspace:GetChildren()) do
  10. if v.Name == "Small Tree" then
  11. v.Trunk.Anchored = true
  12. v.Trunk.CanCollide = false
  13. v.Reference.CanCollide = false
  14. v.Reference.Anchored = true
  15. v.Trunk.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  16. end
  17. end
  18. end
  19.  
  20.  
  21. --Teleports Lurky Bushes
  22. while wait(.50) do
  23. for i, v in pairs(workspace:GetChildren()) do
  24. if v.Name == "Bush" then
  25. v.Stump.Anchored = true
  26. v.Stump.CanCollide = false
  27. v.Stump.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  28. end
  29. end
  30. end
  31.  
  32.  
  33. --Teleports Lurky Bois
  34. while wait(.50) do
  35. for i, v in pairs(workspace:GetChildren()) do
  36. if v.Name == "Lurky Boi" then
  37. v.HumanoidRootPart.Anchored = true
  38. v.HumanoidRootPart.CanCollide = false
  39. v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  40. end
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement