game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) local Torso = character:WaitForChild("Torso") b = Instance.new("ParticleEmitter") b.Size = NumberSequence.new(2.5) b.Parent = Torso b.LightEmission = 0.7 b.Rate = 50 b.Lifetime = NumberRange.new(0.5) b.Texture = "http://www.roblox.com/asset/?id=255513949" end) end)
----------------------- this whole script is the particle emitter script (not local script) Question = how do i change this into a local script that works in the hopper bin?