RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a button when clicked slowly moves a model up a configurable amount of studs."
-- local script local button = script.Parent local model = game.Workspace.YourModel local distance = 10 --Change this to the amount of studs you want the model to move up local function moveModel() for i = 0, distance, 1 do model.CFrame = model.CFrame + Vector3.new(0, 0.1, 0) wait(0.1) end end button.MouseButton1Click:Connect(moveModel)