How do you make a part button and when you click it a part will appear and when clicked again it will disappear? Any answers?
You have to insert a clickdetector into that part. then you add this script:
local NewPart = game.Workspace["New Part"] script.Parent.ClickDetector.MouseClick:Connect(function() if NewPart.Transparency == 0 and NewPart.CanCollide == true then NewPart.Transparency = 1 NewPart.CanCollide = false elseif NewPart.Transparency == 1 and NewPart.CanCollide == false then NewPart.Transparency = 0 NewPart.CanCollide = true end end)
You can change "New Part" to whatever you have named that part
PS: I have a question to: look at my account to see it