Been using beziers for showing projectile paths for a while. Really useful stuff.
@ritsu98372 жыл бұрын
Holy crap this is the best vid to learn about bezier curves implementation, please do more videos that relates to math
@BRicey2 жыл бұрын
Will do! Do you have any topics in particular you were thinking about?
@ritsu98372 жыл бұрын
@@BRicey Hmmm unfortunately rn none, but anything math related that can help us on developing games on Roblox would be good!
@ritsu98372 жыл бұрын
@@BRicey oh just a recommendation for a continuation for the bezier curves is other implementation for it
@Hero.S10 ай бұрын
@@BRicey Octrees
@tomsterbg8130 Жыл бұрын
Recently saw a game which allows you to build spline rails with this technology, would love to spend more time on this to learn more about how it works and how to add that extra rail building feature. :D
@KevScripts Жыл бұрын
I watched so many of your videos by now and I just dont get how you dont get much recognization because you have so many great tutorials like 100k subs type tutorials
@BRicey Жыл бұрын
I appreciate that!
@ThatOneRobloxDev Жыл бұрын
31:00 Could also use tweenservice to tween between points*
@friedavi2 жыл бұрын
Thank you for the awesome quality and highly informative video!
@mythiq86812 жыл бұрын
Best scripting video ever. Thank you so much. Just a question, how would you make the points automatically placed? So, if you were throwing a ball to a certain location, how would you make the points line up so that it is a straight curve to that location?
@BRicey2 жыл бұрын
For my applications here the curve is predetermined, but ego moose has a good article on scripting helpers scriptinghelpers.org/blog/modeling-a-projectiles-motion
@koainanis58402 жыл бұрын
wow this is so awesome ! your a big math pro :) thank you for teaching.
@Shawn6oo82 жыл бұрын
Could you continue on the tycoon series, we want a rebirth tutorial
@N00B02 жыл бұрын
now i know how roblox doors camera cutsense that hard for devs
@ConstantDerivative Жыл бұрын
is there a way to implement b-splines for camera paths? it would be really useful for creating splines with c2 continuity
@fishb8real7 ай бұрын
The script stopped working for some reason. Something about attempting to compare number < nil
@Finite_Official Жыл бұрын
I wish I could add more points to make a longer and bigger cutscene
@BRicey Жыл бұрын
you can by just chaining them together
@wisdomtogbe670 Жыл бұрын
How Would I begin to add more points, do I have to edit the script?
@2ndtwoarray9342 жыл бұрын
Bezier Curves with guis please?
@acrestone2 жыл бұрын
nice video
@Dizzzzol2 жыл бұрын
hey can anyone help me on how to stop the cutscene
@WinTVCH2 жыл бұрын
Nice Video
@koainanis58402 жыл бұрын
very nice tutorial. how can i add a new point like p4, p5, etc ? i try it but the bezier dont will make it. i am not a math pro :) i think i need to change the math formula.
@kjanahan3776 Жыл бұрын
kzbin.info/www/bejne/oKezgYuYpJ1qmtU
@AristoteIe2 жыл бұрын
I didn't understand the cubicBezier function
@BRicey2 жыл бұрын
Watch the video I linked in the description... They do a lot better job than me at explaining it
@Karma-fs1dk2 жыл бұрын
I want to learn how to start creating ROBLOX games, right now I have almost no knowledge on how to do so. Can you possibly assist or give me some advice on how to do so?
@Dizzzzol2 жыл бұрын
Whatch alvin blox
@Dizzzzol2 жыл бұрын
He rly good
@instance30282 жыл бұрын
nice vid
@Dark-zt2ok2 жыл бұрын
thumbs up
@BRicey2 жыл бұрын
luv ya
@user-yk2cp4ik4b2 жыл бұрын
could you make a tutorial for a click cooldown? like this kzbin.info/www/bejne/Y5PVooWFhq5gbtk but just a click detector instead of touching
@rashy152 жыл бұрын
It works the same way, ClickDetector.MouseClick:Connect(function() if not Debounce then Debounce = true print("Clicked") task.wait(1) Debounce = false end end)