ScriptingFluff

[ROBLOX]Arsenal

Feb 9th, 2020
2,518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. print("this shit is working")
  2. function getplrsname()
  3. for i,v in pairs(game:GetChildren()) do
  4. if v.ClassName == "Players" then
  5. return v.Name
  6. end
  7. end
  8. end
  9. local players = getplrsname()
  10. local plr = game[players].LocalPlayer
  11. coroutine.resume(coroutine.create(function()
  12. while wait(1) do
  13. coroutine.resume(coroutine.create(function()
  14. for _,v in pairs(game[players]:GetPlayers()) do
  15. if v.Name ~= plr.Name and v.Character then
  16. v.Character.LowerTorso.CanCollide = false
  17. v.Character.LowerTorso.Material = "Neon"
  18. v.Character.LowerTorso.Size = Vector3.new(15,15,15)
  19. v.Character.HumanoidRootPart.Size = Vector3.new(15,15,15)
  20. v.Character.LowerTorso.Transparency = 1
  21. v.Character.HumanoidRootPart.Transparency = 1
  22. end
  23. end
  24. end))
  25. end
  26. end))
  27. for _,fn in pairs(getgc()) do
  28. if type(fn) == "function" then
  29. local env = getfenv(fn)
  30. if tostring(env.script) == "Client" then
  31. local upvals = getupvalues or debug.getupvalues
  32. local setupval = setupvalue or debug.setupvalue
  33. for idx, val in pairs(upvals(fn)) do
  34. if tonumber(val) == tonumber(game:GetService("Players").LocalPlayer.PlayerGui.GUI.Vitals.Ammo.Clip.Text) then
  35. coroutine.wrap(function()
  36. while wait(0.1) do
  37. setupval(fn, idx, 999)
  38. end
  39. end)()
  40. end
  41. end
  42. end
  43. end
  44. end
  45.  
  46. local mt = getrawmetatable(game)
  47. local setreadonly = setreadonly or function(a,b)if b then make_writeable(a)else make_readonly(a)end end
  48. setreadonly(mt, false)
  49. local idx,nidx,ncll = mt.__index, mt.__newindex, mt.__namecall
  50.  
  51. mt.__namecall = function(object, ...)
  52. if tostring(object) == "BeanBoozled" then
  53. if getnamecallmethod():find("Server") then
  54. print("you got detected :flushed:")
  55. return "lol"
  56. end
  57. end
  58. if tostring(object) == "HitPart" then
  59. if getnamecallmethod():find("Server") then
  60. for i =0,13 do
  61. ncll(object, ...)
  62. end
  63. end
  64. end
  65. return ncll(object, ...)
  66. end
  67. for i,v in pairs(getgc()) do
  68. if type(v) == "table" then
  69. if rawget(v, "getammo") then
  70. while wait() do
  71. v.recoil = 0
  72. v.currentspread = 0
  73. v.mode = "automatic"
  74. v.reloadtime = 0
  75. end
  76. end
  77. end
  78. end
  79. while wait() do
  80. setupvalue(updateInventory, 3, 999);
  81. end
  82.  
  83. loadstring(game:HttpGet(('https://pastebin.com/raw/mwUhAxjU'),true))()
Add Comment
Please, Sign In to add comment