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

Why wont these commands work?

Asked by
Scriptecx 124
9 years ago

It isn't killing the player. Not sure why....

There are not errors.

Full Script:

001--// Ranks
002local Owners = {'Player', 'Scriptecx'}
003local Admins = {}
004local Mods = {}
005local Temps = {}
006local TempBans = {}
007local PBans = {}
008 
009--// Configuration Settings
010CommandPrefix = 'c'
011 NoobAge = 300
012 
013------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
014--                                    DONT EDIT ANYTHING UNDER THIS LINE! UNLESS YOU KNOW WHAT YOU ARE DOING!
015------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
View all 101 lines...
0
You aren't giving it a player. That's why. 1waffle1 2908 — 9y
0
I just added the full script. Look at it. Scriptecx 124 — 9y
0
I just did like 5 mins ago. Scriptecx 124 — 9y
1
On line 62, you are calling chat function without passing player as second argument. Change 'plr.Chatted:connect(chat)' to 'plr.Chatter:connect(function(str) chat(str,plr) end)' LetThereBeCode 360 — 9y

Answer this question