Advertisement
giganciprogramowania

l11 skrypt Produkcja bez komentarzy

Nov 25th, 2022 (edited)
608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. while true do
  2.  
  3. wait(script.Czas.Value)
  4.  
  5. local part = Instance.new("Part")
  6. part.Size = Vector3.new(1,1,1)
  7.  
  8. local kasa = Instance.new("NumberValue", part)
  9. kasa.Name = "Kasa"
  10. kasa.Value = script.Stawka.Value
  11.  
  12. local mesh = script.Mesh:Clone()
  13. mesh.Parent = part
  14.  
  15. part.Position = script.Parent.Position
  16. part.Parent = workspace.Kosz
  17.  
  18. game.Debris:AddItem(part, 10)
  19. end
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement