Basic Time Manipulation script

I’d like some feedback on this script ive made that involves time manipulation. It took me awhile and i had some from from my mentor and the devforum.

Time Turner - Roblox

Suggestions on what i should add and some feedback would be nice

Thank you for your time :grinning:

–Edit

The game has more to show with multiple players

1 Like

Nothing bad as a base script, it can be improved as: Make a key no longer able to be pressed (because the character still does the animation) and some sound effect.

Speaking of the game its obvious that it is not ready but I would recommend that you do a type of gameplay where you test your skills.

Im amazed at how far youve come

1 Like

Thank you so much for the feedback! i don’t really understand what this means or how i can apply it :sweat_smile:

Something like a debounce, so you can’t spam it

something like this?

local WaitTime = 3
local bool = false

if not bool then
  bool = true 
  --do stuff
  wait(WaitTime)
  bool = false
end

and would i add the debounce to the client or the server?

Yep.

Probably the client because that’s where the inputs come from, so the client checks if the debounce isn’t active anymore before firing the event.

1 Like