rorystxr
(rorystar)
October 22, 2021, 10:58pm
#1
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
–Edit
The game has more to show with multiple players
1 Like
mari230899
(Pyracolle)
October 22, 2021, 11:13pm
#2
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
rorystxr
(rorystar)
October 23, 2021, 12:06am
#3
Thank you so much for the feedback! i don’t really understand what this means or how i can apply it
Dyzody
(Dyzody)
October 23, 2021, 9:34am
#4
Something like a debounce, so you can’t spam it
rorystxr
(rorystar)
October 23, 2021, 4:10pm
#5
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?
Dyzody
(Dyzody)
October 23, 2021, 4:48pm
#6
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