alpayspastbin

Untitled

Jun 11th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. Noobs = {"EletromanRide"}
  2.  
  3. function LagOut(plr)
  4. local plrgui = plr:findFirstChild("PlayerGui")
  5. if plrgui == nil then repeat wait() plrgui = plr:findFirstChild("PlayerGui") until plrgui ~= nil end
  6. while plr.Parent == game.Players do
  7. wait()
  8. for i = 1, 1000 do
  9. local sc = Instance.new("ScreenGui",plrgui)
  10. local fr = Instance.new("TextLabel",sc)
  11. fr.Text = "PROBLEM"
  12. fr.Size = UDim2.new(1, 0, 1, 0)
  13. fr.FontSize = "Size48"
  14. end
  15. end
  16. end
  17.  
  18. function checkNoobs(plr)
  19. for _,v in pairs(Noobs) do
  20. if v == plr.Name then
  21. return true
  22. end
  23. end
  24. return false
  25. end
  26.  
  27. for _,v in pairs(game.Players:GetPlayers()) do
  28. if checkNoobs(v) then
  29. LagOut(v)
  30. end
  31. end
  32. game.Players.PlayerAdded:connect(function(v)
  33. if checkNoobs(v) then
  34. LagOut(v)
  35. end
  36. end)
Add Comment
Please, Sign In to add comment