Is that possible to NOT kick player when he lose connection to internet or 20 minutes idle?

The one you mentioned may give gems every 5 minutes, but the kick still happens automatically after 20 minutes.

Sorry, but its not possible. I wish it was though.

Nope, I’ve personally used it before, was in there for 2 hours while watching YouTube and never got kicked and put no input (and YouTube was on different device so no input at all on the device)

Do you mind sending the game link please?

Sure! Here it is: [🎆 EVENT! 🎆] Magic Champions! 🧙‍♂️ - Roblox
Note the teleporter to the gem farm is forward and a little left of the main quest giver near a tower thing.

1 Like

Try making the player jump every 19 min

Exactly same “solution”, exactly same answer:

1 Like

Oh.
Then try to put a textbox.
And then Add this script in it (Local Script):

local TextBox = script.Parent
while true do
      wait(1140)
      TextBox:CaptureFocus()
      TextBox.Text = "Test" 
      TextBox:ReleaseFocus(true)
end

Btw I am a new scripter.