Idled (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
Formatting...
>Tenal
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 12: Line 12:
end)
end)
</pre>}}
</pre>}}
[[Category:Events]]

Latest revision as of 03:32, 7 February 2012

Idled ( Number time )
Description Fired periodically after the user has been away for a while. Currently this event is only fired for the local Player. time is the time in seconds that the user has been idle.
Member of: Player


Example
game.Players.Player.Idled:connect(function()
  print("Idling")
end)