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

Trying to make a script that adds different instances into players when they join?

Asked by 6 years ago
01local Players = game:GetService("Players")
02local audio = game.ServerStorage.Items.Effects.Audio.Sound
03local particle1 = game.ServerStorage.Items.Effects.Particles.ParticleEmitter
04local particle2 = game.ServerStorage.Items.Effects.Particles.ParticleEmitter2
05local velocity = game.ServerStorage.Items.Effects.Velocity.BodyVelocity
06 
07function onPlayerAdded(player)
08    audio:Clone()
09    audio.Parent = game.Players
10end
11 
12Players.PlayerAdded:connect(onPlayerAdded)
13 
14for _,player in pairs(Players:GetPlayers()) do
15     onPlayerAdded(player)
16end

What I want it to do is to move different classes/instances from lighting or serverstorage to a player when they join/re spawn but they don't seem to work.

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

Cloning

Instead of storing the cloned audio in a variable, you don't. If you don't use this, you can't reference the cloned object

Deprecated Syntaxes

You are using :connect(). This is deprecated or not recommended to use. Use :Connect()

Why Are You Looping The Players?

You are looping the players even though you have made the onPlayerAdded() to listen for the PlayerAdded event.

The PlayerAdded event already has its own argument, the player, so, you don't need to call the function again. Even though the player resets, it will still work.

Here is the fix:

01--\\ Services
02local Players = game:GetService("Players")
03local serverStorage = game:GetService("ServerStorage")
04--\\ Cloned Objects
05local items = serverStorage:WaitForChild("Items")
06local effects = items:WaitForChild("Effects")
07local sounds = effects:WaitForChild("Audio")
08local audio = audio:WaitForChild("Sound")
09 
10local particles = effects:WaitForChild("Particles")
11local particle1 = particles:WaitForChild("ParticleEmitter")
12local particle2 = particles:WaitForChild("ParticleEmitter2")
13 
14local velocityFolder = effects:WaitForChild("Velocity")
15local velocity = velocityFolder:WaitForChild("BodyVelocity")
View all 23 lines...
0
look below LoganboyInCO 150 — 6y
Ad

Answer this question