#💬 malito4031ʹs Feedback

1 messages · Page 1 of 1 (latest)

potent plumeBOT
wheat palm
#

sounds off. But otherwise really cool

distant herald
wheat palm
wheat palm
distant herald
#

that not good for a loop ?

wheat palm
# distant herald yea but os clock is saying how many time the cpu render the script

Nono. I mean use it IN the loop.

  local RunService = game:GetService("RunService")
  local lastLooped = os.clock()
  local LOOP_TIME = 10 -- the time that every track takes to do one loop

  RunService.Heartbeat:Connect(function()
      local currentTime = os.clock() - lastLooped

      if currentTime < LOOP_TIME then
          return
      end
      -- the timer has ended, play waiting songs.
      lastLooped = os.clock()
  end)
distant herald
#

ohhh

#

interesting

#

wait that actually really smart