ItzGamerModzYT

Zephic Admin Script

Jun 10th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. --[[
  2.  
  3. Zephic Admin Commands
  4.  
  5. @Async#455 - Script
  6. Other People - For Creating all these scripts!
  7.  
  8. Changelog:
  9. chat stuff to execute scripts instead of pressing keys
  10. which is easier...
  11.  
  12. Adding more scripts kbaiii!
  13.  
  14. say ";cmds" then look into dev console for commands!
  15. ]]--
  16.  
  17.  
  18. // Variables
  19.  
  20. local plrl = game.Players.LocalPlayer
  21. local plr = game.Players
  22. local HouseScript = 'https://pastebin.com/raw/yAt8TEHk'
  23. local InfScript = 'https://pastebin.com/raw/MjBzRjmT'
  24. local FeGui = 'https://pastebin.com/raw/sjWhRd4A'
  25. local finished = 'Executed!'
  26. local mouse = plrl:GetMouse()
  27. local cant = 'failed to, srry :('
  28. local prefix = ";"
  29.  
  30. //Functions
  31.  
  32. plrl.Chatted:connect(function(chat)
  33. if chat == prefix.."cmds" then do
  34. print("Commands:")
  35. warn(";house - Vengeful House")
  36. warn(";inf - Infinite Yield")
  37. warn(";fe gui")
  38. else
  39. print(cant)
  40. end
  41. end)
  42.  
  43. plrl.Chatted:connect(function(chat)
  44. if chat == prefix.."fe gui" then do
  45. loadstring(game:HttpGet((FeGui),true))()
  46. print(finished)
  47. else
  48. print(cant)
  49. end
  50. end)
  51.  
  52. plrl.Chatted:connect(function(chat)
  53. if chat == prefix.."house" then do
  54. loadstring(game:HttpGet((HouseScript),true))()
  55. print(finised)
  56. else
  57. print(cant)
  58. end
  59. end)
  60.  
  61. plrl.Chatted:connect(function(chat)
  62. if chat == prefix.."inf" then do
  63. loadstring(game:HttpGet((InfScript),true))()
  64. print(finised)
  65. else
  66. print(cant)
  67. end
  68. end)
Add Comment
Please, Sign In to add comment