I am trying to figure out how to make a rope appear after not being visible by a player typing a keyword in the chat.
I know for a part the transparency changes from 1 to 0 to make it appear but ropes don't have transparency.
This is what I have for a part:
game.Players.PlayerAdded:connect(function(player)
player.Chatted:connect(function(chat) if chat == "XII" then script.Parent.Transparency = 0 script.Parent.CanCollide = true end end)
end)
Do I have to change much so it can work for a rope?
RopeConstraint.Visible
Propertylocal Rope = game.Workspace.RopeFence.Rope Rope.Visible = false -- <<Turns the rope invisible (Like transparency 1)