Here is the script I tried. It did not work.
script.Parent.MouseButton1Up:Connect(function(tap)
game.ReplicatedStorage.Particles.oldROBLOXlogo:Clone().Parent = game.Players.LocalPlayer.Character.Head
end)
Here is the script I tried. It did not work.
script.Parent.MouseButton1Up:Connect(function(tap)
game.ReplicatedStorage.Particles.oldROBLOXlogo:Clone().Parent = game.Players.LocalPlayer.Character.Head
end)
Try Checking the Error in Output.
And I suggest Using a Remote Event for this.
Also Try,
local Particle = game.ReplicatedStorage.Particles.oldROBLOXlogo:Clone().Parent
Particle.Parent = player.Character.Head
Similar to what YT said. You need to use Remote Functions if you wanted everybody to see the particles rather than just the client.
got it to work after half an hour… there were a lot more issues than this that i resolved on my own, but the remote event thing helped a lot : )