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

how do i make my leg go on fire with a script?

Asked by 7 years ago

c/f = Instance.new("Fire") f.Parent = game.Workspace.jacob4507.Head f.Size = 4 f.Heat = 25 f.Color = Color3.new(1,0,0) f.SecondaryColor = Color3.new(0,0,4)

1 answer

Log in to vote
0
Answered by
deris88 146
7 years ago
local fire = instance.new('Fire')
fire.Heat = 4
fire.Size = 4
fire.Enabled = true
fire.Color = color
fire.SecondaryColor = color
wait(.1)
fire.Parent = game.Players.jacob4507.Character['LeftLeg']

Should work

Ad

Answer this question