2AreYouMental110

Scan_Test.DEMO (SHOW MOSTLY EVERYTHING)

Jul 1st, 2022 (edited)
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.69 KB | None | 0 0
  1. -- https://www.roblox.com/games/9808430159/Scan-Test-DEMO game
  2.  
  3. -- i recommend you execute 1 - 4 times
  4.  
  5. for i, v in pairs(game:GetDescendants()) do
  6.     if v.Name == "Part" then
  7.         v.Transparency = ("0.2")
  8.     end
  9. end
  10. for i, v in pairs(game:GetDescendants()) do
  11.     if v.Name == "HumanoidRootPart" then
  12.         v.Transparency = ("0")
  13.         v.Color = Color3.fromRGB(0, 255, 0)
  14.     end
  15. end
  16. for i, v in pairs(game:GetDescendants()) do
  17.     if v.Name == "RedMan" then
  18.         for i, v in pairs(v:GetChildren()) do
  19.             if v.Name == "Humanoid" then
  20.                 v:Destroy()
  21.             end
  22.         end
  23.         for i, v in pairs(v:GetChildren()) do
  24.             if v.Name == "AI" then
  25.                 v:Destroy()
  26.             end
  27.         end
  28.         for i, v in pairs(v:GetDescendants()) do
  29.             if v.Name == "RedMan" and v.Parent.Name == "Head" then
  30.                 v.Enabled = true
  31.             end
  32.         end
  33.         for i, v in pairs(game:GetDescendants()) do
  34.             if v.Name == "RedMan" then
  35.                 for i, v in pairs(v:GetChildren()) do
  36.                     v.Transparency = ("0")
  37.                     v.Color = Color3.fromRGB(255, 0, 0)
  38.                     if v.Name == "HumanoidRootPart" then
  39.                         v.Transparency = ("1")
  40.                     end
  41.                 end
  42.             end
  43.         end
  44.     end
  45. end
  46.  
  47. for i, v in pairs(game:GetDescendants()) do
  48.     if v.Name == "Head" and v.Parent.Name == "Jailman" then
  49.         v.Transparency = ("0")
  50.         v.Color = Color3.fromRGB(255, 0, 0)
  51.     end
  52. end
  53. for i, v in pairs(game:GetDescendants()) do
  54.     if v.Name == "Head" and v.Parent.Name == "GunMan" then
  55.         v.Transparency = ("0")
  56.         v.Color = Color3.fromRGB(255, 0, 0)
  57.     end
  58. end
  59. for i, v in pairs(game:GetDescendants()) do
  60.     if v.Name == "Head" and v.Parent.Name == "ScaredCharacter" then
  61.         v.Transparency = ("0")
  62.         v.Color = Color3.fromRGB(255, 0, 0)
  63.     end
  64. end
  65. for i, v in pairs(game:GetDescendants()) do
  66.     if v.Name == "Part" and v.Parent.Name == "SecuritySystem" then
  67.         v:Destroy()
  68.     end
  69. end
  70. for i, v in pairs(game:GetDescendants()) do
  71.     if v.Name == "Head" and v.Parent.Name == "ScaredCharacter" then
  72.         v.Transparency = ("0")
  73.         v.Color = Color3.fromRGB(0, 255, 0)
  74.     end
  75. end
  76. for i, v in pairs(game:GetDescendants()) do
  77.     if v.Name == "Head" and v.Parent.Name == "StarterCharacter" then
  78.         v.Transparency = ("0")
  79.         v.Color = Color3.fromRGB(255, 255, 0)
  80.     end
  81. end
  82. for i, v in pairs(game.Players:GetDescendants()) do
  83.     if v.Parent.Name == "XxmcRiderXx" then
  84.         v.Transparency = ("0")
  85.         v.Color = Color3.fromRGB(0, 255, 0)
  86.     end
  87. end
Add Comment
Please, Sign In to add comment