Advertisement
xmaanzach

SpawnTool Tutorial

Jan 24th, 2018
5,769
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local function check()
  2. local check = game.Workspace:FindFirstChild("Sword")
  3. if not check then
  4. wait(5) -- este es el tiempo que demorará en aparecer la herramienta de nuevo.
  5. game.Lighting.Sword:Clone().Parent = game.Workspace
  6. end
  7. end
  8.  
  9. while true do
  10. wait(.1)
  11. check()
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement