The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Change cutter size script pastebin roblox
By Change cutter size on 2024-09-21 08:00 am | Syntax: LUA | Views: 8



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local plr = game.Players.LocalPlayer
  2. local stag = '02' --change to your stage
  3. for i,v in pairs(game:GetService("Workspace")['stage'..stag].character[plr.Name].thorn:GetChildren()) do
  4. if v.Name == "collider" then
  5. v.Size = Vector3.new(30, 5, 100) --change to what you want
  6. --to understand size: sides, up/down(not useful), front/back
  7. warn'edited'
  8. end
  9. end



  • Recent Roblox Scripts