Mboy1985

Untitled

Apr 24th, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. local miejsca = game.Workspace.Miejsca:GetChildren()
  2.  
  3. while true do
  4. if game.ReplicatedStorage.AktywnaGra.Value == true then
  5. if game.ReplicatedStorage.ZombieDoWygenerowania.Value > 0 then
  6. local nowyZombie = game.ReplicatedStorage.Zombie:Clone()
  7. local root = nowyZombie:FindFirstChild("HumanoidRootPart")
  8. local losoweMiejsce = math.random(1, #miejsca)
  9. local losowyX = math.random(-10,10)
  10. local losowyZ = math.random(-10,10)
  11. root.Position = Vector3.new(
  12. miejsca[losoweMiejsce].Position.X + losowyX,
  13.  
  14. 6 ,
  15. miejsca[losoweMiejsce].Position.Z + losowyZ)
  16. nowyZombie.Parent = workspace.Zombiaki
  17. game.ReplicatedStorage.ZombieDoWygenerowania.Value -= 1
  18. end
  19. end
  20. wait(0.2)
  21. end
Add Comment
Please, Sign In to add comment