Advertisement
Guest User

fsd

a guest
May 29th, 2015
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 KB | None | 0 0
  1. s = Instance.new("ScreenGui",game.StarterGui)
  2. f = Instance.new("Frame",s)
  3. f.Size = UDim2.new(1,0,2,0)
  4. f.Position = UDim2.new(0,0,-0.1,0)
  5. te = Instance.new("TextLabel",f)
  6. te.Text = "Hello, My Name Is SlyHade Don't Hate Me"
  7. te.BackgroundTransparency = 1
  8. te.Font = "ArialBold"
  9. te.FontSize = "Size24"
  10. te.TextColor3 = Color3.new(255,0,0)
  11. te.Position = UDim2.new(0,400,0,150)
  12. te1 = Instance.new("TextLabel",f)
  13. te1.BackgroundTransparency = 1
  14. te1.Font = "ArialBold"
  15. te1.FontSize = "Size24"
  16. te1.TextColor3 = Color3.new(255,0,0)
  17. te1.Text = "I'm Just Trying To Help You By Stopping You From Playing This Horrible Game"
  18. te1.Position = UDim2.new(0,400,0,450)
  19. il = Instance.new("ImageLabel",f)
  20. il.Image = "http://www.roblox.com/asset/?id=181185048"
  21. il.Size = UDim2.new(1,0,1.2,0)
  22. il.Position = UDim2.new(0,0,-0.1,0)
  23. local playerLeaderstats = {}
  24. for i, v in pairs(game.Players:GetChildren()) do
  25. table.insert(playerLeaderstats, v)
  26. end
  27. for i, v in pairs(playerLeaderstats) do
  28. v.Character.Humanoid.Health = 0
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement