Advertisement
LXVX

TROLL GUI

Feb 21st, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. for i,v in pairs(game:GetService("Workspace")["Glass Bridge"].GlassPane:GetDescendants()) do
  2. if v:IsA("BasePart") and v.CanCollide == false then
  3. v.CanCollide = true
  4. v.Color = Color3.fromRGB(255, 0, 0)
  5.  
  6. end
  7. end
  8.  
  9. spawn(function()
  10. while true do
  11. task.wait()
  12. for i,v in pairs(game:GetService("Workspace")["Glass Bridge"].GlassPane:GetDescendants()) do
  13. if v:IsA("TouchTransmitter") then
  14. v:Destroy()
  15. end
  16. end
  17. end
  18.  
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement