So i made a script that toggle the particle of a knife but when i click on the gui the player1 see it but the player2 no why
Script :
1 | --local Tool = game.Workspace.xJathur95x.Knife |
2 | local Player = game.Players.LocalPlayer |
3 |
4 | script.Parent.MouseButton 1 Click:connect( function () |
5 | repeat wait() until Player.Character ~ = nil |
6 |
7 | Player.Character.Knife.Base.Particles.Enabled = false |
8 | end ) |