RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a afk script everytime the player exits the tab"
-- local script local UserInputService = game:GetService("UserInputService") UserInputService.WindowFocused:Connect(function() game.Players.LocalPlayer.UserIdle = false end) UserInputService.WindowFocusReleased:Connect(function() game.Players.LocalPlayer.UserIdle = true end)