RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script to when i equip the sword the sword appreas again"
-- local script inside the tool (sword) local tool = script.Parent tool.Equipped:Connect(function() tool.Handle.Transparency = 0 -- Assuming the sword's main part is named "Handle" end) tool.Unequipped:Connect(function() tool.Handle.Transparency = 1 -- Make the sword disappear when unequipped end)