Advertisement
TheGamer1

KhBE

Aug 10th, 2019
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. -- Made By Iconz V1
  2.  
  3. function FireEvent(path, args)
  4. path:FireServer(args)
  5. end
  6.  
  7. function InvokeEvent(path, args)
  8. path:InvokeServer(args)
  9. end
  10.  
  11. function GetOtherPlayers()
  12. for __,v in pairs(game.Players:GetChildren()) do
  13. if v.Name == game.Players.LocalPlayer.Name then
  14. print("No other players found")
  15. else
  16. print(v)
  17. end
  18. end
  19. end
  20.  
  21. function ExecuteScript(string)
  22. while wait() do
  23. tostring(string)
  24. end
  25. end
  26.  
  27. function loadstringg(link)
  28. loadstring(game:HttpGet(tostring(link), true))()
  29. end
  30.  
  31.  
  32. function obfuscate(string)
  33. local obf = string:gsub(".", function(bb) return "\\" .. bb:byte() end) or thing .. "\""
  34. print("loadstring(".. obf .. ")()")
  35. end
  36.  
  37. function copystring(string)
  38. setclipboard(string)
  39. end
  40.  
  41. function UpdateModule(path, object, string)
  42. local module = require(path)
  43. module[object] = tostring(string)
  44. end
  45.  
  46.  
  47. function key(string)
  48. if string == "KEYHERE" then
  49. print("ass")
  50. else
  51. print("wrong")
  52. end
  53. end
  54.  
  55. -- syn only
  56. function protectstring(string)
  57. if syn then
  58. syn.crypt.base64.encode(string)
  59. else
  60. print("wow")
  61. end
  62. end
  63.  
  64. --syn only
  65. function getsource(object)
  66. setclipboard(tostring(decompile(object)))
  67. end
  68.  
  69. function getbytecode(string)
  70. loadstring = print
  71. print(loadstring(string)())
  72. end
  73.  
  74.  
  75. function createerror(object)
  76. local a = "1".. object
  77. print(a)
  78. end
  79.  
  80.  
  81. ----EXAMPLES----
  82.  
  83.  
  84. createerror("print('why am i gay')")
  85. getbytecode("\112\114\105\110\116\40\34\104\101\108\108\111\34\41\10")
  86. getsource(game.Workspace.LocalScript)
  87. key("whatisthekey")
  88. copystring("Iconz Is the best")
  89. UpdateModule(game.Workspace.Module, "Ammo", "99999999999999")
  90. executeserver("print'server'")
  91. obfuscate("print'hello'")
  92. GetOtherPlayers()
  93. FireEvent(game.ReplicatedStorage.AS,"")
  94. loadstringg("https://pastebin.com/raw/UmanHsBh")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement