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