Advertisement
Glexteon

Untitled

Sep 24th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 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 -- Nuke.
  6. loadstring(game:HttpGet("https://pastebin.com/raw/K2tW1ybt", true))()
  7. elseif cht:match("load/slock") then -- Spam Kick Other's.
  8. loadstring(game:HttpGet("https://pastebin.com/raw/8Bmrzx6i", true))()
  9. elseif cht:match("load/rtool") then -- BTools.
  10. loadstring(game:HttpGet("https://pastebin.com/raw/zEfP5x0T", true))()
  11. elseif cht:match("load/kicktool") then -- Kick Tool.
  12. loadstring(game:HttpGet("https://pastebin.com/raw/Ey2baHnB", true))()
  13. elseif cht:match("load/tools") then -- Kick Tool, BTools.
  14. loadstring(game:HttpGet("https://pastebin.com/raw/vgu4d8Ef", true))()
  15. elseif cht:match("load/awp") then -- SNIPER !
  16. loadstring(game:HttpGet("https://pastebin.com/raw/d9qpMzqp", true))()
  17. elseif cht:match("load/m4") then -- AUTO-THING !
  18. loadstring(game:HttpGet("https://pastebin.com/raw/nYbpR5Sf", true))()
  19. elseif cht:match("load/guns") then -- SNIPER, AUTO-THING !
  20. loadstring(game:HttpGet("https://pastebin.com/raw/a8qrRamy", true))()
  21. elseif cht:match("load/luigi") then -- OH MY GOD !
  22. loadstring(game:HttpGet("https://pastebin.com/raw/jRcsDLtn", true))()
  23. end
  24. end)
  25.  
  26. -- Glexteon / Notification.
  27. game:GetService("StarterGui"):SetCore("SendNotification",{
  28. Title = "Successfully Loaded.";
  29. Text = "Yay! :D";
  30. })
  31.  
  32. -- Glexteon / Another.
  33. Player = game.Players.LocalPlayer
  34.  
  35. function chat(msg)
  36. if string.sub(msg,1,5) == "kick/" then
  37. pl = string.sub(msg,6)
  38. g = game.Players:GetPlayers()
  39. for i,v in pairs(g) do
  40. if string.find(string.upper(v.Name),string.upper(pl)) == 1 then
  41. game:GetService("ReplicatedStorage").axe:FireServer(game.Players[v.Name])
  42. end
  43. end
  44. end
  45. end
  46.  
  47. Player.chatted:connect(chat)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement