my issue here is that I am trying to make a sword that dissapears once the tool version of it is equipped and when it is unequipped, The Sword on the back reappears. but my issue here is that even though my script isn’t givng any errors. it isn’t working either. The script it’s self appears to not work for some reason. So I need help figuring out how to make the script work so the sword will dissapear off the back. here is my script. "
local gui = game.StarterGui.LightGui
local realsword = script.Parent
local SWORD = script.Parent.Parent.Sword
realsword.Equipped:Connect(function()
SWORD.Transparency = 1
end)
realsword.Unequipped:Connect(function()
SWORD.Transparency = 0
end)
it’s inside the tool as a normal script (atleast what it was last before i deleted) Am I suppose to put it somewhere else? because i want it to dissapear but only for the local player but i want everyone to be able to see it server sided without the sword dissapearing from other players back which could possibly happen