WINX_rblx

BIG PAINTBALL OP SCRIPT

Nov 26th, 2020
1,220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1.  
  2. spawn(function()
  3. local message = Instance.new("Message",workspace)
  4. message.Text = "THANKS FOR USING GOD SCRIPT (wait 5 seconds)"
  5. wait(5)
  6. message:Destroy()
  7. end)
  8.  
  9. local m = getrawmetatable(game)
  10. local runservice = game:GetService("RunService")
  11. local uis = game:GetService("UserInputService")
  12. setreadonly(m,false)
  13.  
  14. local on = false
  15. local namecall = m.__namecall
  16.  
  17. local function kill(code,player)
  18. if player and code then
  19. local A_1 =
  20. {
  21. [1] =
  22. {
  23. [1] = player.Character.Humanoid,
  24. [2] = code,
  25. [3] = 170,
  26. [4] = player.Character.Head.Position,
  27. [5] = false,
  28. [6] = false,
  29. [7] = false
  30. },
  31. [2] =
  32. {
  33. [1] = false,
  34. [2] = false,
  35. [3] = false,
  36. [4] = false,
  37. [5] = false,
  38. [6] = 2,
  39. [7] = 2
  40. }
  41. }
  42. local Event = game:GetService("Workspace")["__THINGS"]["__REMOTES"]["do damage"]
  43. Event:FireServer(A_1)
  44. end
  45. end
  46.  
  47. local function getplayer()
  48. local f = {}
  49. for _,player in pairs(game:GetService("Players"):GetPlayers()) do
  50. if player.Character and player ~= game:GetService("Players").LocalPlayer then
  51. local c = false
  52. if player.Neutral then
  53. c = true
  54. elseif player.Team ~= game:GetService("Players").LocalPlayer.Team then
  55. c = true
  56. end
  57. if c and player.Character:FindFirstChild("Humanoid") and not player.Character:FindFirstChildOfClass("ForceField") and player.Character:FindFirstChild("Head") then
  58. f[#f+1] = player
  59. end
  60. end
  61. end
  62. return f
  63. end
  64.  
  65. local function namecallfunction(self,...)
  66. local args = {...}
  67. if getnamecallmethod() == "FireServer" then
  68. if args[1] then
  69. if args[1][1] then
  70. if #args[1][1] == 3 then
  71. local f = getplayer()
  72. kill(args[1][1][2],f[math.random(1,#f)])
  73. end
  74. end
  75. end
  76. end
  77. return namecall(self,unpack(args))
  78. end
  79.  
  80. runservice.RenderStepped:Connect(function()
  81. if on then
  82. if validfgwindow() then
  83. else
  84. on = false
  85. warn("Mouse clicked outside of Roblox")
  86. end
  87. end
  88. end)
  89.  
  90. uis.InputBegan:Connect(function(input)
  91. if input.KeyCode == Enum.KeyCode.E then
  92. if on then on = false else on = true end
  93. warn(on == true and "On" or on == false and "Off")
  94. end
  95. end)
  96.  
  97. m.__namecall = namecallfunction
  98. setreadonly(m,true)
Advertisement
Add Comment
Please, Sign In to add comment