I putted that script, In ServerScriptService but It dosen’t works… /
local msg = “:permban”
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(m)
if m == msg then
player:Kick()
end
end)
end)
I putted that script, In ServerScriptService but It dosen’t works… /
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.
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
actually right now im testing to see if i can make it, ill let you know if i manage
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
.
Mr.ForeverHD, I aleardy did the second advice, but… can you help me to, edit module?