so i have this ability that basicly makes an explosion behind the player, but the particles do not emit, i can only see them once i go to the server side
https://gyazo.com/9a608b6ae2c91bda5e93d6bf307c4ee7
https://gyazo.com/00be634d449c9e8e939dffd57da4fd14
--In a Server script that is in ServerScriptService
local ParticlePart = workspace.Storage.FlamboyantKick:Clone()
ParticlePart.Parent = workspace["Summoned Parts"]
ParticlePart.Position = hrp.Position
ParticlePart.Rotation = hrp.Rotation
for i,v in ParticlePart.InitalBlast:GetChildren() do
if v:IsA("ParticleEmitter") then
v:Emit(300)
end
end ```
![image|192x113](upload://4Y6Nu09EWBg6cxxXd46SKA2oPW0.png)