Advertisement
Jame_nest123

FPE - Da Fangame ESP All NPCs

Mar 27th, 2025
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.24 KB | Gaming | 0 0
  1. --- It's fine if you don't give me credits lmao🔥
  2.  
  3. local Good = Color3.new(0, 255, 0)
  4. local Neutral = Color3.new(255, 255, 0)
  5. local Enemy = Color3.new(255, 0, 0)
  6. local UnIdentified = Color3.new(255, 255, 255)
  7.  
  8. local highlight = Instance.new("Highlight")
  9. local highlight2 = Instance.new("Highlight")
  10. local highlight3 = Instance.new("Highlight")
  11.  
  12. local Circle = workspace.School.NPCs:FindFirstChild("Miss Circle")
  13. local Bloomie = workspace.School.NPCs:FindFirstChild("Miss Bloomie")
  14. local Thavel = workspace.School.NPCs:FindFirstChild("Miss Thavel")
  15.  
  16. if Circle and Bloomie and Thavel then
  17.     highlight.Parent = Circle
  18.     highlight2.Parent = Bloomie
  19.     highlight3.Parent = Thavel
  20. end
  21.  
  22. highlight.FillTransparency = 1
  23. highlight2.FillTransparency = 1
  24. highlight3.FillTransparency = 1
  25.  
  26. highlight.OutlineColor = Enemy
  27. highlight2.OutlineColor = Enemy
  28. highlight3.OutlineColor = Enemy
  29.  
  30. local Compass = workspace.School.NPCs:FindFirstChild("Mister Compass")
  31. local Fer = workspace.School.NPCs:FindFirstChild("Mister Ferrum")
  32. local Pin = workspace.School.NPCs:FindFirstChild("Mister Pin")
  33. local Grace = workspace.School.NPCs:FindFirstChild("Miss Grace")
  34.  
  35. if Compass and Fer and Pin then
  36.     local highlight4 = Instance.new("Highlight")
  37.     local highlight5 = Instance.new("Highlight")
  38.     local highlight6 = Instance.new("Highlight")
  39.  
  40.     highlight4.OutlineColor = Enemy
  41.     highlight5.OutlineColor = Enemy
  42.     highlight6.OutlineColor = Enemy
  43.  
  44.     highlight4.FillTransparency = 1
  45.     highlight5.FillTransparency = 1
  46.     highlight6.FillTransparency = 1
  47.  
  48.     highlight4.Parent = workspace.School.NPCs["Mister Compass"]
  49.     highlight5.Parent = workspace.School.NPCs["Mister Ferrum"]
  50.     highlight6.Parent = workspace.School.NPCs["Mister Pin"]
  51. end
  52.  
  53. local PHighlight = Instance.new("Highlight")
  54.  
  55. PHighlight.FillTransparency = 1
  56. PHighlight.OutlineColor = Neutral
  57. PHighlight.Parent = workspace.School.NPCs["Miss Grace"]
  58.  
  59. local Chip = workspace.School.NPCs:FindFirstChild("Chip")
  60.  
  61. if Chip then
  62.     local highlightChip = Instance.new("Highlight")
  63.     highlightChip.OutlineColor = Good
  64.     highlightChip.FillTransparency = 1
  65.     highlightChip.Parent = Chip
  66. end
  67.  
  68. print("FPE - Da Fangame ESP NPCs Activated (give Credits to James_nest123 on Roblox)")
  69.  
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement