RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"there is a button at the top of the screen when you click it you grow by 1"
-- local script local button = script.Parent local player = game:GetService("Players").LocalPlayer local function grow() local character = player.Character local humanoid = character:FindFirstChild("Humanoid") humanoid.BodyHeightScale.Value = humanoid.BodyHeightScale.Value + 1 end button.MouseButton1Click:Connect(grow)