Issues with free admin place

I putted that script, In ServerScriptService but It dosen’t works… /:slight_smile:

local msg = “:permban”

game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(m)
if m == msg then
player:Kick()
end
end)
end)

you said “:permban” right? no quotations

Yeah…

hmmm let me test it out, also is it a local script or a normal script?
(30 characters)

Local script…

okay, thats why its not working, change it to a server script/ normal script

I also, tried that… but nope.

Oh, devforum symbols are different then normal studio ones, rewrite the msg to be a string inside these “”

edit: script works for me, when i say permban it kicks me

Can you gyazo gif the script? Screenshot the script In studio… <3 thanks.

Screen Shot 2020-05-03 at 11.13.11 AM

1 Like

sorry about baseplate being there, dont type that lol

Thank you, so much dude, It works <3

uhh… can you help again? Forceplace kicks works fine but If you write number like this :forceplace all 50000 It works…

hmmm let me finish eating rq, ill look into it after

Oh ok… Thanks!..

sooo, i’m not the most experienced scripter but i know you can make it where the message is “:forceplace examplePlayerName 50000” i’m going to try to figure out how, you should too

1 Like

actually right now im testing to see if i can make it, ill let you know if i manage

1 Like

you should search up on youtube “roblox studio ban system”, change the text to be “:permban”

As lucke mentioned, the current version doesn’t support removable commands without directly editing the MainModule.

In V3 you can achieve this by doing CommandService:removeCommand(name); for the time being your best bet is setting the commands rank to 5 and setting ‘OnlyShowUsableCommands’ to true.

2 Likes

Mr.ForeverHD, I aleardy did the second advice, but… can you help me to, edit module?