Limited Time Script | UNLIMITED WORDS

Created by reex

Features:

  • UNLIMITED WORDS

unlimited words, basically touches orbs to get more time, they spawn every N seconds so you will never run out of words

getgenv().Time = true

spawn(function()
   local plr = game:GetService("Players").LocalPlayer.Character.Head
   while wait() do
       if not getgenv().Time then break end
       for i,v in pairs(game:GetService("Workspace").CoinSpawns:GetDescendants()) do
           if v:IsA("TouchTransmitter") and v.Parent then
               firetouchinterest(plr, v.Parent, 0)
           end
       end
   end
end)