RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"a gui that that moves around the screen randomly tweened and when clicked it dissapears"
-- local script (StarterGui) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local frame = Instance.new("Frame", screenGui) frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0) frame.Size = UDim2.new(0, 100, 0, 100) local function moveFrame() local randomX = math.random(0, workspace.CurrentCamera.ViewportSize.X - frame.AbsoluteSize.X) local randomY = math.random(0, workspace.CurrentCamera.ViewportSize.Y - frame.AbsoluteSize.Y) local tweenInfo = TweenInfo.new(2, Enum.EasingStyle.Linear) local tween = game:GetService("TweenService"):Create(frame, tweenInfo, {Position = UDim2.new(0, randomX, 0, randomY)}) tween:Play() end frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then frame:Destroy() end end) while true do wait(5) moveFrame() end