Advertisement
LeviTheOtaku

chi ninja Legends

Oct 27th, 2019
404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local stuff = workspace.spawnedCoins.Valley:getChildren()
  2. for i=1,#stuff do
  3. if stuff[i].Name == "Blue Chi Crate" or stuff[i].Name == "Pink Chi Crate" then
  4. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = stuff[i].CFrame
  5. wait(.3)
  6. end
  7. end
  8.  
  9. workspace.spawnedCoins.Valley.ChildAdded:connect(function(stuff)
  10. if stuff.Name == "Blue Chi Crate" or stuff.Name == "Pink Chi Crate" then
  11. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = stuff.CFrame
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement