I need help with a script cloning a part multiple times at random locations?
Asked by
4 years ago Edited 4 years ago
I need help with a script cloning a part mutliple times at random locations
Hello I am new at coding and after some research i came up with this..
02 | local part = game.ServerStorage.bush |
03 | local clonedbush = part:Clone() |
04 | local x = math.random(- 1020 , 1024 ) |
06 | local z = math.random(- 1020 , 1024 ) |
09 | clonedbush.Parent = game.Workspace |
10 | clonedbush:SetPrimaryPartCFrame(CFrame.new(x, y, z)) |
yes the model is called bush...
This code wont spawn more than 1 model and it will spawn it at the same location and not at a random one, please help me fix this.