Advertisement
APPLLEEXSDSFSFD

Apeirophobia esp script

Jul 24th, 2022
14,312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. --Simulation Cores ESP
  2. local folder = game.Workspace.Ignored.Trophies
  3.  
  4. local function Destroyed(x)
  5. if x.Parent then return false end
  6. local _, result = pcall(function() x.Parent = x end)
  7. return result:match("locked") and true or false
  8. end
  9.  
  10. for _, v in pairs(folder:GetChildren()) do
  11. local gui = Instance.new("BillboardGui")
  12. local tl = Instance.new("TextLabel")
  13.  
  14. gui.Parent = v
  15. gui.AlwaysOnTop = true
  16. gui.Size = UDim2.new(5,0, 3,0)
  17. gui.StudsOffset = Vector3.new(0, 3, 0)
  18.  
  19. tl.Parent = gui
  20. tl.Size = UDim2.new(1,0, 1,0)
  21. tl.BackgroundTransparency = 1
  22. tl.TextScaled = true
  23. tl.TextColor3 = Color3.new(0, 20, 255)
  24. tl.Text = "S. Core"
  25.  
  26. v.Changed:Connect(function()
  27. if Destroyed(v) == true then
  28. gui:Destroy()
  29. end
  30. end)
  31. end
  32.  
  33.  
  34.  
  35.  
  36. --Entity ESP
  37. local folder = game.Workspace.Entities
  38.  
  39. local function Destroyed(x)
  40. if x.Parent then return false end
  41. local _, result = pcall(function() x.Parent = x end)
  42. return result:match("locked") and true or false
  43. end
  44.  
  45. for i, v in pairs(folder:GetChildren()) do
  46. if v.Name ~= "Studio" then
  47. local gui = Instance.new("BillboardGui")
  48. local tl = Instance.new("TextLabel")
  49.  
  50. gui.Parent = v
  51. gui.AlwaysOnTop = true
  52. gui.Size = UDim2.new(5,0, 3,0)
  53. gui.StudsOffset = Vector3.new(0, 3, 0)
  54.  
  55. tl.Parent = gui
  56. tl.Size = UDim2.new(1,0, 1,0)
  57. tl.BackgroundTransparency = 1
  58. tl.TextScaled = true
  59. tl.TextColor3 = Color3.new(185, 0, 0)
  60. tl.Text = v.Name
  61. end
  62. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement