Advertisement
Guest User

maenwer

a guest
Feb 27th, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. working = true
  2.  
  3. repeat wait(0.1)
  4.  
  5.  
  6.  
  7. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  8.  
  9.    if v:IsA('Tool') then
  10.  
  11.        v.Parent = game.Workspace[game.Players.LocalPlayer.Name]
  12.  
  13.    end
  14.  
  15. end
  16.  
  17. for i,v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  18.  
  19.    if v:IsA("Part") then
  20.  
  21.        wait(.1)
  22.  
  23.        game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = v.CFrame
  24.  
  25.        game.Players.LocalPlayer.ninjaEvent:FireServer("swingKatana")
  26.  
  27.    game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllSwords", "Space Island")
  28.  
  29.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllBelts", "Space Island")
  30.  
  31.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllSkills", "Space Island")
  32.  
  33.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllSwords", "Astral Island")
  34.  
  35.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllBelts", "Astral Island")
  36.  
  37.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllSkills", "Astral Island")
  38.  
  39.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllSwords", "Ground")
  40.  
  41.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllBelts", "Ground")
  42.  
  43.        game.Players.LocalPlayer.ninjaEvent:FireServer("buyAllSkills", "Ground")
  44.  
  45.        game.Workspace.sellAreaCircle.circleInner.CFrame = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  46.  
  47.    end
  48.  
  49. end
  50.  
  51. until working == false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement