Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Team switcher script activated")
- local Player = game.Players.LocalPlayer
- Char = Player.Character
- Hum = Char.Humanoid
- Player.Chatted:connect(function(cht)
- if cht == "/e Guards" then
- Blue()
- elseif cht == "/e guards" then
- Blue()
- elseif cht == "/e Pick" then
- Grey()
- elseif cht == "/e pick" then
- Grey()
- elseif cht == "/e Inmates" then
- Orange()
- elseif cht == "/e inmates" then
- Orange()
- end
- function Blue()
- Workspace.Remote.TeamEvent:FireServer("Bright blue")
- end
- function Grey()
- Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
- end
- function Orange()
- Workspace.Remote.TeamEvent:FireServer("Bright orange")
- end
- print("Script Started")
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement