Im going to make some admin and Admin Commands, But I need to Know how to check if, a person is an Admin.
Hmm, you'd probly do this;
local Admins = {"friendlyfriendpersonfriend"} game.Players.PlayerAdded:connect(function(plr) for i,v in pairs(Admins)do if plr.Name:lower()==v:lower()then plr.Chatted:connect(function(msg) --Rest of coding here end) end end end)
Hope this helped!