Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "SizeBooster"
- screenGui.ResetOnSpawn = false
- screenGui.Parent = player:WaitForChild("PlayerGui")
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(0, 250, 0, 100)
- frame.Position = UDim2.new(0.5, -125, 0.5, -50)
- frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- frame.Parent = screenGui
- local button = Instance.new("TextButton")
- button.Size = UDim2.new(1, -20, 1, -20)
- button.Position = UDim2.new(0, 10, 0, 10)
- button.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
- button.TextColor3 = Color3.fromRGB(255, 255, 255)
- button.Font = Enum.Font.SourceSans
- button.TextSize = 18
- button.Text = "Start Growth"
- button.Parent = frame
- local growing = false
- local function growCharacter()
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:WaitForChild("Humanoid")
- if humanoid.RigType ~= Enum.HumanoidRigType.R15 then
- warn("[SizeBooster] This character is NOT R15, resizing won't work.")
- return
- end
- local bodyHeight = character:FindFirstChild("BodyHeightScale")
- local bodyWidth = character:FindFirstChild("BodyWidthScale")
- local bodyDepth = character:FindFirstChild("BodyDepthScale")
- local headScale = character:FindFirstChild("HeadScale")
- if not (bodyHeight and bodyWidth and bodyDepth and headScale) then
- warn("[SizeBooster] Could NOT locate one or more scale instances.")
- warn("Available instances:", character:GetChildren())
- return
- end
- print("[SizeBooster] All scale instances found. Starting growth...")
- while growing do
- bodyHeight.Value = bodyHeight.Value * 1.005
- bodyWidth.Value = bodyWidth.Value * 1.005
- bodyDepth.Value = bodyDepth.Value * 1.005
- headScale.Value = headScale.Value * 1.005
- wait(0.7)
- end
- end
- button.MouseButton1Click:Connect(function()
- if growing then
- growing = false
- button.Text = "Start Growth"
- print("[SizeBooster] Stopped growing.")
- else
- growing = true
- button.Text = "Stop Growth"
- task.spawn(growCharacter)
- end
- end)
- print("[SizeBooster] Loaded. Press the button to start.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement