"make a script in every 1 second something happens with the baseplate"
xxxxxxxxxx
-- server script
while true do
local randomX = math.random(-100, 100)
local randomZ = math.random(-100, 100)
local baseplate = game.Workspace.Baseplate
baseplate.Position = Vector3.new(randomX, 0, randomZ)
wait(1)
end