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

How do I make a part that will appear fire?

Asked by 5 years ago

So far I know -

Local part = Instance.new(“part”)

But then how do I add fire to that?

2 answers

Log in to vote
0
Answered by 5 years ago

Make a new fire instance and place it inside the part. It's super simple

local fire = Instance.new("Fire", part)

That's it lmao, I hope this helps though!

0
Yes it did! SharkOwen_dev 69 — 5y
0
So I under stand fire -> (goes into) the part! SharkOwen_dev 69 — 5y
0
yes exactly, that's what the Instance.new("Fire", part) does InfinityEngine 223 — 5y
Ad
Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Ok, so I see local fire = Instance.new("Fire", part)>

Answer this question