Problem with Water Particles For A Pool

I am making a water particle effect for when a player enters a pool
But the particles don’t show. I tried increasing the particle amount but that didn’t work. I tried Increasing my graphics but that doesn’t work either
Please helpp
image

Try this maybe?

local Water = script.Parent

local function MakeParticles(Part)
    local HRP = Part.Parent:FindFirstChild("HumanoidRootPart")
    if HRP then
        if HRP:FindFirstChild("WaterParticle") then
            return
        end
 
        local WaterParticle = game.ReplicatedStorage.WaterParticle:Clone()
        WaterParticle.Parent = HRP
        wait(25)
        WaterParticle:Destroy()
    end
end

Water.Touched:Connect(MakeParticles)
1 Like

Thank you it works
kjslefkshfnskjfhnskjfhns I need to make it at least 30

1 Like