COPY AND PASTE:
local TweenService = game:GetService("TweenService")
local part = workspace.Part
local goal = {}
goal.Position = Vector3.new(10, 10, 0)
goal.Color = Color3.new(0, 1, 0)
local tweenInfo = TweenInfo.new(60)
local tween = TweenService:Create(part, tweenInfo, goal)
tween:Play()