Hello, I wanted to ask why my script is not working. I put this script into the "Server Script Service" and I don't know why it doesn't work in advance, thanks in advance.
god = game.Players.DontBlinkDrWho function onChatted(msg) if msg == "!Change" then game.Workspace.alertzone.Decal.Transparency = "7726603141" end end god.Chatted:connect(onChatted)
Thanks
You forgot to add to id rbxassetid://
, here's the working code
Also you was trying to change Trasnparency
.
god = game.Players.DontBlinkDrWho function onChatted(msg) if msg == "!Change" then game.Workspace.alertzone.Decal.Texture = "rbxassetid://7726603141" end end god.Chatted:connect(onChatted)