RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"If I click this button, it tweens to the corner of the screen"
-- local script local TweenService = game:GetService("TweenService") local button = script.Parent local function tweenToCorner() local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out) local targetPosition = UDim2.new(0, 0, 0, 0) local tween = TweenService:Create(button, tweenInfo, {Position = targetPosition}) tween:Play() end button.MouseButton1Click:Connect(tweenToCorner)