The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Phantom Forces script pastebin roblox
By LINK GAME on 2024-09-18 08:00 am | Syntax: LUA | Views: 12



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. game:GetService("RunService").RenderStepped:Connect(function()  for i,v in pairs(game.Workspace.Camera:GetChildren()) do   if v.Name ~= 'Left Arm' and v.Name ~= 'Right Arm' then     for i,g in pairs(v:GetDescendants()) do     if g.ClassName == 'Texture' then       g:Remove()      else if g.ClassName == 'Part' or g.ClassName == 'MeshPart' or g.ClassName == 'UnionOperation' then       g.Color = Color3.fromHSV(tick() % 5 / 5, 1, 1)      end     end    end   end  end end)