Kitty-Admin

Lobby

Jul 12th, 2021 (edited)
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. _G.ToggleColor = Color3.fromRGB(143,111,191)
  2. _G.ButtonColor = Color3.fromRGB(143,111,191)
  3. _G.SliderColor = Color3.fromRGB(143,111,191)
  4.  
  5. getgenv().WearOutfit = false
  6. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))() -- It's obfuscated, I won't let you see my ugly coding skills. =)
  7.  
  8. local w = library:CreateWindow("Break In - Lobby")
  9.  
  10. local b = w:CreateFolder("Roles")
  11.  
  12. b:Toggle("Wear Outfit",function(bool)
  13. getgenv().WearOutfit = bool
  14. end)
  15.  
  16. b:Button("Swat",function()
  17. local A_1 = "SwatGun"
  18. local A_2 = getgenv().WearOutfit
  19. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  20. Event:FireServer(A_1, A_2)
  21. end)
  22.  
  23. b:Button("Police",function()
  24. local A_1 = "Gun"
  25. local A_2 = getgenv().WearOutfit
  26. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  27. Event:FireServer(A_1, A_2)
  28. end)
  29.  
  30. b:Button("Hardcore",function()
  31. local A_1 = "LinkedSword"
  32. local A_2 = getgenv().WearOutfit
  33. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  34. Event:FireServer(A_1, A_2)
  35. end)
  36.  
  37. b:Button("Lolli Pop",function()
  38. local A_1 = "LolliPop"
  39. local A_2 = getgenv().WearOutfit
  40. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  41. Event:FireServer(A_1, A_2)
  42. end)
Add Comment
Please, Sign In to add comment