RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"instance a box and every time you say box it makes the box bigger."
-- local script local box = script.Parent game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) if message == "box" then local size = box.Size box.Size = Vector3.new(size.X + 1, size.Y + 1, size.Z + 1) end end) end)