Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

[CLOSED] [FIXED] Making an Admin, Not Running PlayerAdded or Chatted Function?

Asked by 7 years ago
Edited 7 years ago

Hi there, I would like someone's help to find out why the:

1game.Players.PlayerAdded:Connect(function(plr)

method and:

1plr.Chatted:Connect(function(message)

are not working.

Here is the scripts that are connected and run:

Admin Main

001                                                                                                --[[
002_____________________________________________________________________________________________
003 
004 
005                                    \    / |\    /|
006                                     \  /  | \  / |
007                                      \/   |  \/  |
008                                      /\   |      |
009                                     /  \  |      | /\
010                                    /    \ |      | \/
011 
012                                    ------------------
013                                     Things Made Easy
014                                    ------------------
015 
View all 111 lines...

Settings Module:

01local settings = {}
02 
03        settings.DataBase = "PRIVATE" --Data Base For Saving Data
04        settings.DataBaseKey = "PRIVATE" --Key For Saved Data
05        settings.SystemStorage = game:GetService("ReplicatedStorage")
06 
07        settings.Mods = {} --Moderators                     Format: ( "Username", "UserId", "GroupId", "GroupId:GroupRank" )
08        settings.Admins = {} --Administrators               Format: ( "Username", "UserId", "GroupId", "GroupId:GroupRank" )
09        settings.COadmins = {} --CO Admins                  Format: ( "Username", "UserId", "GroupId", "GroupId:GroupRank" )
10        settings.COAadmins = {"Marineboy3O8"} --COA Admins                Format: ( "Username", "UserId", "GroupId", "GroupId:GroupRank" )
11        settings.Owners = {} --Owners                       Format: ( "Username", "UserId", "GroupId", "GroupId:GroupRank" )
12        settings.HeadOwners = {"KaiserVehosalmi"} --Head Owners              Format: ( "Username", "UserId", "GroupId", "GroupId:GroupRank" )
13 
14        settings.Banned = {"3144536:Betrail of Alience","1104961:Enemies"} --Banned Players               Format: ( "Username:Reason", "UserId:Reason", "GroupId:Reason", "GroupId:GroupRank:Reason" )
15        settings.Muted = {} --Muted Players                 Format: ( "Username:Reason", "UserId:Reason", "GroupId:Reason", "GroupId:GroupRank:Reason" )
View all 57 lines...

DataStore Module:

01local data = {}
02 
03        local settings = require(game:GetService("ServerScriptService").XMAdmin.Settings)
04 
05        data.DataStore = game:GetService("DataStoreService"):GetDataStore(settings.DataBase)
06        data.DataKey = settings.DataBaseKey
07 
08        warn("[XMAdmin]: Running DataStore...")
09 
10        data.mods = settings.Mods
11        data.admins = settings.Admins
12        data.COadmins = settings.COadmins
13        data.COAadmins = settings.COAadmins
14        data.owners = settings.Owners
15        data.headOwners = settings.HeadOwners
View all 85 lines...
0
Please Help People! It would be really apriciated. SynthetickDev 188 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

Try this:

1plr.Chatted:connect(function(message)

and this:

1game.Players.PlayerAdded:connect(function(plr)
0
'connect' is decrepted now use 'Connect' SynthetickDev 188 — 7y
Ad

Answer this question