I have trouble at the end of the script, I won't be providing it for various reasons, But it starts like this
game.Players.PlayerAdded:connect(function(player)
if player.Name == "Bazux" then
player.Chatted:connect(function(msg)
if msg == "Boss" then
Then it goes through some functions; when it gets to the end, The "end)'s" always end up w/ an error on the last one.
Are you remembering to end your if statements?
game.Players.PlayerAdded:connect(function(player) if player.Name == "Bazux" then player.Chatted:connect(function(msg) if msg == "Boss" then end end) end end)