Glexteon

Untitled

Sep 15th, 2019
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. -- Glexteon / Command's Customization.
  2. local Player = game.Players.LocalPlayer
  3.  
  4. Player.Chatted:connect(function(cht)
  5. if cht:match("load/nuke") then
  6. loadstring(game:HttpGet("https://pastebin.com/raw/K2tW1ybt", true))()
  7. elseif cht:match("load/slock") then
  8. loadstring(game:HttpGet("https://pastebin.com/raw/8Bmrzx6i", true))()
  9. elseif cht:match("load/rtool") then
  10. loadstring(game:HttpGet("https://pastebin.com/raw/zEfP5x0T", true))()
  11. elseif cht:match("load/kicktool") then
  12. loadstring(game:HttpGet("https://pastebin.com/raw/Ey2baHnB", true))()
  13. elseif cht:match("load/tools") then
  14. loadstring(game:HttpGet("https://pastebin.com/raw/vgu4d8Ef", true))()
  15. elseif cht:match("load/luigi") then
  16. loadstring(game:HttpGet("https://pastebin.com/raw/jRcsDLtn", true))()
  17. end
  18. end)
  19.  
  20. -- Glexteon / Notification.
  21. game:GetService("StarterGui"):SetCore("SendNotification",{
  22. Title = "Successfully Loaded.";
  23. Text = "Yay! :D";
  24. })
  25.  
  26. -- Glexteon / Another.
  27. Player = game.Players.LocalPlayer
  28.  
  29. function chat(msg)
  30. if string.sub(msg,1,5) == "kick/" then
  31. pl = string.sub(msg,6)
  32. g = game.Players:GetPlayers()
  33. for i,v in pairs(g) do
  34. if string.find(string.upper(v.Name),string.upper(pl)) == 1 then
  35. game:GetService("ReplicatedStorage").axe:FireServer(game.Players[v.Name])
  36. end
  37. end
  38. end
  39. end
  40.  
  41. Player.chatted:connect(chat)
Add Comment
Please, Sign In to add comment