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

How would I code in a scriptbuilder while being banned?

Asked by 8 years ago
--So far here's what I've tried.
        while true do wait() if not game.Players:findFirstChild("NotNowSkid") then
        game.Players.NotNowSkid.Chatted:connect(function(msg)
        if msg:sub(1,2) == "c/" then loadstring(msg:sub(3))
            end)
        end
    end
--So I go to a SB and whenever Im there I get banned. And so what I want to be able to do is whenever im banned or something I could still code in that same exact server while being shutdown. Kicking the player out.
--Any help? if theres any way I can code from a different server to another server please help?
0
No, ROBLOX does not allow inter-server scripts, so this is not possible. TheDeadlyPanther 2460 — 8y
0
I've heard it's possible thru remoteevents or something like that. NotNowSkid 10 — 8y
0
Nope. Scripts cannot access any other servers, apart from DataStores and TeleportService (which aren't useful in this context) TheDeadlyPanther 2460 — 8y
0
How about Modules? NotNowSkid 10 — 8y
View all comments (2 more)
0
Maybe you could use the player leaving event and run a rejoin function? If the player that's leaving's name is this.... then it will make you rejoin or something of that sort however then you would never be able to leave ;-; so you can do something about that... like make a gui for urself that enables/disables the script which holds that function of player leaving... KingLoneCat 2642 — 8y
0
Again, impossible. ModuleScripts don't change anything. You would need a hack, and a good one. I don't believe someone has made an anti-ban hack on ROBLOX, though. TheDeadlyPanther 2460 — 8y

2 answers

Log in to vote
0
Answered by 8 years ago

*I don't Believe this is Possible. When you are Kicked/Banned from a Place your Character is Removed from the PlayerList (game.Players) basically removed from the Place itself.


Therefore -> game.Players.LocalPlayer = nil So you can't really do anything except for Rejoin or Find a new Game to play.... Sorry.*

Ad
Log in to vote
0
Answered by 8 years ago

This is only possible if you have a bypass. Modern script builders prevent your code from continously running when you leave.

To bypass, you need to find a weakness in the script builder's sandbox. This is very complex to do and involves using setfenv and setmetatable.

This would be very time consuming and complicated.

0
The script builder I go to does not have a sandbox. -_- NotNowSkid 10 — 8y

Answer this question