RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a fire effect and tell me where to put it in studio"
-- local script local fire = script.Parent local fireParticle = Instance.new("ParticleEmitter") fireParticle.Parent = fire fireParticle.Size = Vector3.new(1,1,1) fireParticle.Texture = "rbxassetid://YourTextureIDHere" fireParticle.Color = ColorSequence.new(Color3.fromRGB(255, 0, 0)) fireParticle.LightEmission = 0.5 fireParticle.Lifetime = NumberRange.new(0.5, 1) fireParticle.Rate = 100 fireParticle.Speed = NumberRange.new(0.5, 1) fireParticle.RotSpeed = NumberRange.new(-1, 1) fireParticle.Acceleration = Vector3.new(0, 0.2, 0) -- You can put this script in the Workspace in Studio to spawn a fire effect in the game space