Advertisement
Dragos2K11

roblox passive size shanger (testing)

Jun 22nd, 2025 (edited)
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.26 KB | None | 0 0
  1.  
  2. local player = game.Players.LocalPlayer
  3. local screenGui = Instance.new("ScreenGui")
  4. screenGui.Name = "SizeBooster"
  5. screenGui.ResetOnSpawn = false
  6. screenGui.Parent = player:WaitForChild("PlayerGui")
  7.  
  8. local frame = Instance.new("Frame")
  9. frame.Size = UDim2.new(0, 250, 0, 100)
  10. frame.Position = UDim2.new(0.5, -125, 0.5, -50)
  11. frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  12. frame.Parent = screenGui
  13.  
  14. local button = Instance.new("TextButton")
  15. button.Size = UDim2.new(1, -20, 1, -20)
  16. button.Position = UDim2.new(0, 10, 0, 10)
  17. button.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  18. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  19. button.Font = Enum.Font.SourceSans
  20. button.TextSize = 18
  21. button.Text = "Start Growth"
  22. button.Parent = frame
  23.  
  24. local growing = false
  25.  
  26. local function growCharacter()
  27.     local character = player.Character or player.CharacterAdded:Wait()
  28.     local humanoid = character:WaitForChild("Humanoid")
  29.  
  30.     if humanoid.RigType ~= Enum.HumanoidRigType.R15 then
  31.         warn("[SizeBooster] This character is NOT R15, resizing won't work.")
  32.         return
  33.     end
  34.  
  35.     local bodyHeight = character:FindFirstChild("BodyHeightScale")
  36.     local bodyWidth = character:FindFirstChild("BodyWidthScale")
  37.     local bodyDepth = character:FindFirstChild("BodyDepthScale")
  38.     local headScale = character:FindFirstChild("HeadScale")
  39.  
  40.     if not (bodyHeight and bodyWidth and bodyDepth and headScale) then
  41.         warn("[SizeBooster] Could NOT locate one or more scale instances.")
  42.         warn("Available instances:", character:GetChildren())
  43.         return
  44.     end
  45.  
  46.     print("[SizeBooster] All scale instances found. Starting growth...")
  47.  
  48.     while growing do
  49.         bodyHeight.Value = bodyHeight.Value * 1.005
  50.         bodyWidth.Value = bodyWidth.Value * 1.005
  51.         bodyDepth.Value = bodyDepth.Value * 1.005
  52.         headScale.Value = headScale.Value * 1.005
  53.         wait(0.7)
  54.     end
  55. end
  56.  
  57. button.MouseButton1Click:Connect(function()
  58.     if growing then
  59.         growing = false
  60.         button.Text = "Start Growth"
  61.         print("[SizeBooster] Stopped growing.")
  62.     else
  63.         growing = true
  64.         button.Text = "Stop Growth"
  65.         task.spawn(growCharacter)
  66.     end
  67. end)
  68.  
  69. print("[SizeBooster] Loaded. Press the button to start.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement