scripterhaxer

island

Nov 2nd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. while wait() do game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 99 end
  2.  
  3. Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game.Players.LocalPlayer.PlayerGui}
  4.  
  5. local enabledesp = false
  6.  
  7. function CreateESP(plr)
  8.  
  9. if plr ~= nil then
  10.  
  11. local GetChar = plr.Character
  12. if not GetChar then return end
  13.  
  14. local GetHead do
  15.  
  16. repeat wait() until GetChar:FindFirstChild("Head")
  17.  
  18. end
  19. GetHead = GetChar.Head
  20.  
  21. local bb = Instance.new("BillboardGui", Important.CoreGui)
  22. bb.Adornee = GetHead
  23. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  24. bb.AlwaysOnTop = true
  25. bb.Size = UDim2.new(0, 5, 0, 5)
  26. bb.StudsOffset = Vector3.new(0, 3, 0)
  27. bb.Name = "ESPPLAYER" .. plr.Name
  28.  
  29. local displayframe = Instance.new("Frame", bb)
  30. displayframe.ZIndex = 10
  31. displayframe.BackgroundTransparency = 1
  32. displayframe.Size = UDim2.new(1,0,1,0)
  33.  
  34. local name = Instance.new("TextLabel", displayframe)
  35. name.Name = "Name"
  36. name.ZIndex = 10
  37. name.Text = plr.Name
  38. name.Visible = true
  39. name.TextColor3 = Color3.new(255, 0, 4)
  40. name.BackgroundTransparency = 1
  41. name.Size = UDim2.new(1,0,10,0)
  42. name.Font = Enum.Font.Cartoon
  43. name.TextSize = 30
  44. name.TextStrokeTransparency = .5
  45.  
  46. end
  47.  
  48. end
  49.  
  50.  
  51. for i,v in pairs(Important.Players:GetChildren()) do
  52. if game.GameId == 1320186298 then return end
  53. CreateESP(v)
  54.  
  55. end
Add Comment
Please, Sign In to add comment