I’m trying to remove the hitbox on the character locally so the player’s mouse does not interfere with it (when aiming with mouse or mobile touch). Here’s the local script in StarterCharacterScripts.
local hitbox = character:WaitForChild("BiggerHitbox")
game.Debris:AddItem(hitbox, 1)
Now after testing on studio I can see on the ServerSide that the hitbox has completely vanished from the character. How do I remove it only on the client side?