roblox lua how to make something go invisible

-- Step 1: Find the object you want to make invisible
local targetObject = workspace:WaitForChild("YourObjectName")

-- Step 2: Set the Transparency property to 1 for full invisibility
targetObject.Transparency = 1