Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a button that repeatedly clones a model?

Asked by 5 years ago
Edited 5 years ago

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

1local unit = game:GetService("ReplicatedStorage"):WaitForChild("Viking"):Clone()
2 
3local function cloneUnit(player)
4    print(player.Name)
5 
6    unit.Parent = workspace
7end

2 answers

Log in to vote
0
Answered by
Lunaify 66
5 years ago
1local unit = game:GetService("ReplicatedStorage"):WaitForChild("Viking")
2 
3local function cloneUnit(player)
4    print(player.Name)
5 
6    local unitClone = unit:Clone()
7    unitClone.Parent = workspace
8end

try this?

Ad
Log in to vote
0
Answered by
raid6n 2196 Moderation Voter Community Moderator
5 years ago

simple

01local function cloneUnit(player)
02for i = 1,100 -- 100 is how many times it will be cloned
03local unit = game:GetService("ReplicatedStorage"):WaitForChild("Viking"):Clone()
04 
05    print(player.Name)
06 
07    unit.Parent = workspace
08wait(1) -- use this as it will lag the server
09end
10end
0
Any questions? raid6n 2196 — 5y
0
The idea is that it clones one model for every click of the button, but the button clones the model once and thats it WaterlooBuilder 4 — 5y
0
i see raid6n 2196 — 5y
0
i see raid6n 2196 — 5y
View all comments (3 more)
0
i see raid6n 2196 — 5y
0
is this a local script raid6n 2196 — 5y
0
where is it located raid6n 2196 — 5y

Answer this question