Upscalefanatic3

Prison Royale ESP Script

Jan 26th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. print()
  2. wait(0.1)
  3. local function esp()
  4. for i,v in pairs(game.Players:GetChildren()) do
  5. if v ~= game.Players.LocalPlayer.Character.Torso then
  6.  
  7. local base = Instance.new("BillboardGui", workspace.Camera)
  8. local esP = Instance.new("Frame", base)
  9.  
  10. base.AlwaysOnTop = true
  11. base.Enabled = true
  12. base.Size = UDim2.new(2,0,2,0)
  13. base.Name = "ESP"
  14. base.Adornee = v.Character.Torso
  15. base.StudsOffset = Vector3.new(0, -0.75, 0)
  16.  
  17. esP.BackgroundColor3 = Color3.new(255, 0, 0)
  18. esP.BackgroundTransparency = 0.8
  19. esP.BorderColor3 = Color3.new(0,0,0)
  20. esP.BorderSizePixel = 1
  21. esP.Size = UDim2.new(1,0,1,0)
  22.  
  23. local name = Instance.new("TextLabel",base)
  24. name.Size = UDim2.new(1,0,1,0)
  25. name.BackgroundTransparency = 1
  26. name.Position = UDim2.new(0,0,0,0)
  27. name.Text = v.Name
  28. name.TextScaled = true
  29. name.TextColor3 = Color3.new(255,255,255)
  30. name.TextXAlignment = "Center"
  31. name.TextYAlignment = "Top"
  32. name.Font = "Highway"
  33. name.Position = UDim2.new(0,0,0,-100)
  34. end
  35. end
  36. print("ESP Loaded!")
  37. print("Created by Kid Atlaas/FileExplorer")
  38. print("Modified by alex/Cxtrl")
  39. end
  40.  
  41. game.Players.LocalPlayer.CharacterAdded:connect(esp)
  42.  
  43. esp()
Add Comment
Please, Sign In to add comment