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

Anyone know how to make a tested Particle saving script?

Asked by 6 years ago

Sorry if it may seem like I am spamming but I really need the answer. I have been trying to make a particle saving script for a long time but I am getting nowhere there aren't even any tutorials for this. If you do know how to make one plz put the script in the answer colunm thank you!

0
How did you even get -5 rep? XD CaptaiinNoob 52 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

No one is going to write a script for you. The more you spam, you might just get moderated. Learn the basics before trying to make a game.

Before reading on, this is assuming you know how to do DataStore

If you are trying to make a particle saving script what you would need a StringValue. Start with a ServerScript:

game.Players.PlayerAdded:Connect(function(plr)
    local Particles = Instance.new('StringVaue')
    Particles.Parent = plr
    Particles.Value = 'Nothing'
end)

Set the Value of particles to the name of the particle, then, simply save the data on leave or button.

Then, make another ServerScript, call it 'Particle Loader'

than load the particles

game.Players.PlayerAdded:Connect(function(plr)
    if plr:WaitForChild(Particles').Value == 'Fire' then
        -- add fire particle
    elseif plr:WaitForChild('Particles').Value == 'Water' the n
        -- add water particle
    end
end)

This is a simple idea on how to do it. Remember, learn before doing. You won't make a good game if you can't do things you self. Search, google, and read the Roblox Wiki before asking.

If this helped you in anyway, please Upvote and accept answer :D

-- Your Orange, BlackOrange3343

Ad

Answer this question