I don't know where to put this script

For this, you would use a Script, not a LocalScript.

I can give an example later, it’s just such a pain to type on a phone, especially scripting with autocorrect.

Lol i was tryna script it so i put it in r6 and used this script

game.Players.PlayerAdded:Connect(function(player)
	player.CharacterAdded:Connect(function(Character)
		while true do
			wait(1) 
			for i,v in pairs(Character:GetDescendants())	do 
				if v:IsA("BasePart") then
					

					v.Size = v.Size + Vector3.new(0.1,0.1,0.1)
				end
			end
		end
	end)	
end)

You grow but the parts stay in the same spot and they overlap

2 Likes

Oh that’s not gonna work for R6

Oh, i’ve just tried it with R6, that’s exactly what i wanted thanks!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.