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

How do you clone something to another thing?

Asked by 10 years ago

when the script run it would clone Fire to handle but im not sure how

function fire()
script .Parent.Fire:Clone() --How to put the cloned fire to the handle of tool?

1 answer

Log in to vote
0
Answered by
IcyEvil 260 Moderation Voter
10 years ago

your function will fail anyway you didnt do this

function fire()
script.Parent.Fire:Clone()
end
fire()

and to clone it to something I think you do this

function fire()
script.Parent.Fire:Clone("Fire", Workspace)
end
fire()
0
and the ("Fire", Workspace) Change Workspace to whatever you want to clone it To. IcyEvil 260 — 10y
0
Ill test that Revenant101 25 — 10y
Ad

Answer this question