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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local destruction = game:GetService("Workspace").GameWorlds.NormalWorlds.World1.Destructibles:GetChildren()
  2.  
  3. for i = 1, #destruction do
  4.     local des = destruction[i]
  5.     local pog = {
  6.         ["TagFullName"] = 'Workspace.GameWorlds.NormalWorlds.World1.Destructibles.' .. des.name
  7.     };
  8.  
  9.  
  10. local maybepog = game:GetService("ReplicatedStorage").Remotes.BreakBuilding;
  11. maybepog:FireServer(pog);
  12. end