newtmannewt

Untitled

May 25th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. --script.Parent = nil
  2. player = ""
  3. blacklist = true
  4. xi = 1
  5. yi = 0.5
  6. xm = 100
  7. ym = -100
  8. xsi = 1
  9. ysi = 1
  10. xsm = 200
  11. ysm = 200
  12.  
  13.  
  14. for i = 0, math.huge, 0.5 do
  15. for _, PlayerList in pairs(game:GetService("Players"):GetPlayers()) do
  16. if (string.match(PlayerList.Name:lower(), player:lower()) == nil and blacklist == false) or (string.match(PlayerList.Name:lower(), player:lower()) ~= nil and blacklist == true) then
  17. pcall(function()
  18. if PlayerList.PlayerGui:FindFirstChild("PIKACHU") == nil then
  19. local Gui = Instance.new("ScreenGui", PlayerList.PlayerGui)
  20. Gui.Name = "PIKACHU"
  21. local Image = Instance.new("ImageLabel", Gui)
  22. Image.Image = "http://www.roblox.com/Asset/?id=43996669"
  23. Image.BorderSizePixel = 0
  24. end
  25. PlayerList.PlayerGui.PIKACHU.ImageLabel.Position = UDim2.new(0, math.sin(i * xi) * xm, 0, math.sin(i * yi) * ym)
  26. PlayerList.PlayerGui.PIKACHU.ImageLabel.Size = UDim2.new(1, math.sin(i * xsi) * xsm, 1, math.sin(i * ysi) * ysm)
  27. end)
  28. end
  29. end
  30. wait()
  31. end
Add Comment
Please, Sign In to add comment