RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a part that emits fire"
-- script for the fire part local part = script.Parent local fire = Instance.new("Fire") fire.Parent = part fire.Size = 5 fire.Heat = 10 fire.Color = Color3.fromRGB(255,0,0) fire.Enabled = true