Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. --SynapseX Decompiler
  2.  
  3. local GameEvents = workspace.GameEvents
  4. local Players = game.Players
  5. local Player = Players.LocalPlayer
  6. local AdminList = {
  7. 23952793,
  8. 63300487,
  9. 119868,
  10. 14922769,
  11. 35276317,
  12. 21238127,
  13. 39523020,
  14. 109217153,
  15. 6828351,
  16. 428631361,
  17. 42285938,
  18. 160319861,
  19. 94254052,
  20. 57628717,
  21. 81275825,
  22. 14099358,
  23. 144170792,
  24. 4317782,
  25. 69239108,
  26. 117551840
  27. }
  28. local Btn = script.Parent
  29. local check = false
  30. for i, v in pairs(AdminList) do
  31. if Player.UserId == v then
  32. check = true
  33. break
  34. end
  35. end
  36. if check then
  37. Btn.Visible = true
  38. do
  39. local Enabled = true
  40. Btn.MouseButton1Down:connect(function()
  41. if not Enabled then
  42. return
  43. end
  44. Enabled = false
  45. GameEvents.AdminDino:FireServer()
  46. wait(1)
  47. Enabled = true
  48. end)
  49. end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement