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

How Can I add Particle Emitter to A WorldModel?

Asked by
VAnkata20 135
1 year ago

i need a way to add a particle emitter in world model but i dont know how

1 answer

Log in to vote
0
Answered by 1 year ago

To add a particle emitter you need to use the .instance()

local Destenation = workspace -- put where your world model is


local function NewEmitter()
    local Emmiter = Instance.new("ParticleEmitter")
    Emmiter.Parent = Destenation
end



game.Players.PlayerAdded:Connect(NewEmitter) -- Put the event you want it to happed on here with the (NewEmitter)
-- Use NewEmitter() only if you want to start it without a event

If you want to add a particle emitter to a world model without a script then just hover over it click plus and find the Particle emitter icon and name

Ad

Answer this question