RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"script for a part to make it grow bigger and smaller"
-- local script local part = script.Parent local size = part.Size local function grow(otherPart) part.Size = size * 2 wait(1) part.Size = size end part.Touched:Connect(grow)