Answers for "Chat door roblox"

Lua
0

Chat door roblox

game.Players.PlayerAdded:connect(function(player)
	player.Chatted:connect(function(msg)
		if msg == "MuppetIsEpic" then -- Change "MuppetIsEpic" to the word you want it to open to
			script.Parent.CanCollide = false
			script.Parent.Transparency = .4
			wait(4)
			script.Parent.CanCollide = true
			script.Parent.Transparency = 3
		end
	end)
end)

-- Discord = Muppet#6931
-- Put the code in the part.
Posted by: Guest on February-26-2021

Browse Popular Code Answers by Language