i have the remote event and the button part down, and can make it clone but it only clones the model once instead of repeatedly cloning the model
1 | local unit = game:GetService( "ReplicatedStorage" ):WaitForChild( "Viking" ):Clone() |
2 |
3 | local function cloneUnit(player) |
4 | print (player.Name) |
5 |
6 | unit.Parent = workspace |
7 | end |
1 | local unit = game:GetService( "ReplicatedStorage" ):WaitForChild( "Viking" ) |
2 |
3 | local function cloneUnit(player) |
4 | print (player.Name) |
5 |
6 | local unitClone = unit:Clone() |
7 | unitClone.Parent = workspace |
8 | end |
try this?
simple
01 | local function cloneUnit(player) |
02 | for i = 1 , 100 -- 100 is how many times it will be cloned |
03 | local unit = game:GetService( "ReplicatedStorage" ):WaitForChild( "Viking" ):Clone() |
04 |
05 | print (player.Name) |
06 |
07 | unit.Parent = workspace |
08 | wait( 1 ) -- use this as it will lag the server |
09 | end |
10 | end |