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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. while wait() do --place "--" in start of this line and in the last end to remove the loop when executing
  2. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  3. if v.Name == "Part" and v:IsA("Part") and v.Shape == Enum.PartType.Ball then
  4. v.Size = Vector3.new(20,20,20) --change this if want to make bigger or smaller
  5. wait()
  6. end
  7. end
  8. end