Advertisement
okban

done

Feb 20th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1.  
  2. --Converted with ttyyuu12345's model to script plugin v4
  3. function sandbox(var,func)
  4. local env = getfenv(func)
  5. local newenv = setmetatable({},{
  6. __index = function(self,k)
  7. if k=="script" then
  8. return var
  9. else
  10. return env[k]
  11. end
  12. end,
  13. })
  14. setfenv(func,newenv)
  15. return func
  16. end
  17. cors = {}
  18. mas = Instance.new("Model",game:GetService("Lighting"))
  19. Script0 = Instance.new("Script")
  20. Script0.Name = "BanKill"
  21. Script0.Parent = mas
  22. table.insert(cors,sandbox(Script0,function()
  23. -- format: game.Workspace.PlayerNameHere.Humanoid.Health
  24. -- Script made by Dirt97
  25. -- I am in the process of making another script which if a button is hit it will LOOP KILL all people in the place or that certain person
  26. -- Note: THE NAME YOU ENTER WILL ALWAYS DIE NO MATTER WHAT Its pretty much like a banned list, but this gives them WipeOuts :P
  27.  
  28. repeat
  29. wait(0)
  30. game.Workspace.LifeBest.Humanoid.Health = 0 -- On this line replace "Player" with the name of the person that you want to be loopkilled
  31. until false
  32. end))
  33. for i,v in pairs(mas:GetChildren()) do
  34. v.Parent = workspace
  35. pcall(function() v:MakeJoints() end)
  36. end
  37. mas:Destroy()
  38. for i,v in pairs(cors) do
  39. spawn(function()
  40. pcall(v)
  41. end)
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement