Тёмный

The Most ACCURATE Projectile in ROBLOX!! 

fidgetspinner71
Подписаться 1,3 тыс.
Просмотров 42 тыс.
50% 1

yes i clickbait but the vid is REAL
learn abt physics and kinematics
Resources:
FastCast - etithespir.it/...
Physics by Professor Dave - • Classical Physics
Discord: / discord
My current project: / discord

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 116   
@fidgetspinner71
@fidgetspinner71 9 месяцев назад
Part 2 is out now!!! Learn how to make your projectiles bounce!! ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-xs6G2KhpiP4.htmlsi=ju6EgeyIsvYbWpXu
@Rocush
@Rocush 9 месяцев назад
THE WAY I CLAPPED AND SAID YESSS! 💀 WHEN YOU SAID I'M GONNA TEACH YOU HOW TO WRITE IT YOURSELF. So many dang tutorials are just people showing us how to use the modules and I've always hated those videos because I want to know how to do it not just rely on someone else and never learn. I was about to click off and then you said "the module FastCast" I'm so happy this wasn't one of those.
@faded_ace5144
@faded_ace5144 Год назад
This is definitely complex but what's more complex are the emotions you feel whilst trying to deal with body velocities and watching something move in the air at a total speed of 5fps. So ty
@hccybercraft5076
@hccybercraft5076 2 месяца назад
Bro's better at teaching physics more than the teachers i know.
@aqaisback9517
@aqaisback9517 2 месяца назад
;-;
@Vortex-qb2se
@Vortex-qb2se Год назад
I was looking for client-side hitbox as it fixes network latency issues but nice tutorial.
@notactuality
@notactuality Год назад
clientcast?
@kokobroxd
@kokobroxd Год назад
you can just use it on client side
@TREB0RZ
@TREB0RZ 2 месяца назад
@@notactuality bad for projectiles
@gggamingtakeshi7035
@gggamingtakeshi7035 7 месяцев назад
Here I am, with my non mathematician brain making a goal part created on mouse position with a limited range, then moving it downwards and slowly accelerates downwards faster simulating gravity and having my raycast slowly approach it based on bullet speed when I could've just done this.
@NotAltered7750
@NotAltered7750 Год назад
Thought I was learning physics. Anyways, nice video
@multistronomy
@multistronomy 11 дней назад
hey idk if ur still active but i have a problem where once i cast it in the onserverevent it gives me an error on the line where we set the rayResult, "Unable to cast Vector3 to raycast params" not sure if this is outdated tho (this might be bc i replaced "whitelist" in the params with "include" since thats deprecated)
@thebestn0oobever
@thebestn0oobever Год назад
This is gonna be so good for my fighting game knockback, thanks
@vrfrenzy8451
@vrfrenzy8451 Год назад
thanks, I hate relying on other peoples modules
@masterssandwich3312
@masterssandwich3312 9 месяцев назад
the memory usage went up to 3 gigabytes lol
@cezito6831
@cezito6831 23 дня назад
because the video code isn't doing OOP, for every new projectile it creates all the same methods again
@imthebestmayne122
@imthebestmayne122 21 день назад
@@cezito6831 I noticed that too, and I was unsure if I was the one who was mistaken, but I guess not.
@Leafy597
@Leafy597 5 месяцев назад
A trick, instead of using Heartbeat and wait() in your script, use task.wait(). The task.wait() command can run at the same speed as heartbeat (60hz, every frame), but you can also input seconds into the parenthesis the same as normal wait().
@beedrillking4023
@beedrillking4023 3 месяца назад
just use render stepped much better
@Jelleydev
@Jelleydev Год назад
only reason i subbed is to fix the 666 nice video btw
@trilazer_duo8659
@trilazer_duo8659 Год назад
So i have an error that says that projectile is not a member of folder modules, whats the fix?
@VeryProPlayerYesSir1122
@VeryProPlayerYesSir1122 Год назад
you need a folder for the projectiles you are shooting at.
@ben12355
@ben12355 Месяц назад
1:40 i do not care
@Leafy597
@Leafy597 5 месяцев назад
The issue with having hitboxes client side is that a user can exploit them to hit every time. I prefer having them on the server for that reason, also because everyone gets the same performance that way, one persons hitbox accuracy is the same as anothers.
@Reviire
@Reviire 5 месяцев назад
Yeah. The client can tell the server where to start it, but all validation should be on the server only. As long as simulation is consistent between client and server the client predicted simulation should be almost the same as the server, if ping is high there may be issues though. But it'll still feel good to use as long as it's predicted on the client rather than appearing 0.2-0.4s in the past on your client.
@qxxrd
@qxxrd Год назад
hey, I'm working on a throwable football and I want the nose of the football to be looking at the direction that the player throws in. I have my own custom caster which handles the football drop and physics.
@pepperdayjackpac4521
@pepperdayjackpac4521 Год назад
CFrame.LookAt()
@qxxrd
@qxxrd Год назад
@@pepperdayjackpac4521 Can you please elaborate more?
@pepperdayjackpac4521
@pepperdayjackpac4521 Год назад
@@qxxrd CFrame.LookAt will angle your obj so that it faces its targetPosition. It takes in two parameters: the starting position (the position of the obj) and the targetPosition (which is where the obj will be facing towards), both are Vector3. if your football is changing directions, then you need to recalculate the starting and target position each time so that the nose points like it would in real life. But if it's just moving in a straight line, then you won't need to recalculate.
@qxxrd
@qxxrd Год назад
@@pepperdayjackpac4521 I have tried to do what you said but the problem now is the when the player throws to the side the nose of the football is fowards and not facing where the player aimed to. Caster Code: NewProjectile = self.Projectile:Clone() DirectionVector = (target - origin).Unit PositionVector = *Trajectory Calculations* -- THIS PART IS IN A LOOP NewProjectile.CFrame = CFrame.lookAt(ProjectilePosition, DirectionVector)
@fidgetspinner71
@fidgetspinner71 Год назад
@@qxxrd just multiply it by some rotation cframe that fits with your model (ex. CFrame.Angles(math.rad(90),0,0) ) (i think cframe.angles uses radians instead of degrees but idk just play around with it)
@whozproxy
@whozproxy 7 месяцев назад
Thanks for this video! I’m pretty new with Raycasts and I’m trying to make a custom gun system or my game and this will help a lot!
@williamhutchins479
@williamhutchins479 3 месяца назад
Hope it comes out well!
@Xisco72
@Xisco72 7 месяцев назад
I don't think this is the best for big projectiles, because i'm using this to move a trash MeshPart, and sometimes it goes through parts that shouldn't because they can collide. For example, i'm throwing this meshpart against a house wall, it collides with it and detects the hit, but it trespasses it. Maybe because the mesh is kinda "big" and since you are constantly changing the position, it goes through them unlike when you are using a velocity mover
@fidgetspinner71
@fidgetspinner71 7 месяцев назад
This video was made before spherecast was added. Use spherecast problem solved
@Xisco72
@Xisco72 7 месяцев назад
tysm you were right!!! congrats on the video, really useful module to move big projectiles 🥰 @@fidgetspinner71
@Grandmasterannuuu
@Grandmasterannuuu Год назад
Its better to have a black list raycast param instead of whitelist for bigger games
@pepperdayjackpac4521
@pepperdayjackpac4521 Год назад
Why
@WoozyNate
@WoozyNate Год назад
@@pepperdayjackpac4521 you will have to constantly add many folders and children instead of just blacklisting certain things
@rei2261
@rei2261 Год назад
@@pepperdayjackpac4521 because unless u wanted to whitelist couple of things it would be more efficient
@notactuality
@notactuality Год назад
you cant allocate for every single thing the projectiles should hit a metaphor would be rather sort out the bad ones instead of look for the good ones @@pepperdayjackpac4521
@Nightwinger5100
@Nightwinger5100 10 месяцев назад
​@pepperdayjackpac4521 it'll reach a point where there's less things you want it to hit instead of ignore
@vis7040
@vis7040 7 месяцев назад
you resumed my physics semester
@yaspat616
@yaspat616 11 месяцев назад
you're talented oml❤
@FunkyTrucky
@FunkyTrucky 3 месяца назад
Thank you very much, I learned a lot from this video.
@r4nd0mStuff
@r4nd0mStuff 2 месяца назад
Well I learned that a lot easier than I thought I would. You're a pretty good teacher 👍👍
@Glimmers
@Glimmers 9 месяцев назад
Hey awesome video! When I put in a model as projectile it moves just fine but it looks a little bit choppy because I am just settings its position every RayCast do you think Tween or Lerping would work in anyway for the projectile so it looks smove when it moves?
@LeapInno
@LeapInno 9 месяцев назад
It seems like roblox projectiles has this weird delay for every shot. It makes it look weird.
@Sadjhj
@Sadjhj 11 месяцев назад
Hey, is it possible to use this on a model? I have a firework game and I want to move the firework physics to client side but every time I tried I couldn’t get it to work.
@reddeadleisure
@reddeadleisure 11 месяцев назад
Could you be more specific? Maybe you could even open a devforum post about it
@cyberlordshop
@cyberlordshop 9 месяцев назад
Yeah absoloutely. Fire the event, whenever you want the firework to be activated. Just name the start, dest and force. It should work.
@reddeadleisure
@reddeadleisure 9 месяцев назад
Bruh i think i replied to the wrong comment
@cyberlordshop
@cyberlordshop 9 месяцев назад
really?@@reddeadleisure
@citizenfoffie7605
@citizenfoffie7605 8 месяцев назад
Would there be a way for me to set it to hit a certain amount of studs by adding on angle(but without moving the mouse up), to create a zeroing effect
@primharley9586
@primharley9586 8 месяцев назад
Wait. If it’s running on the client doesn’t that make it not secure?
@Ey_SmoKrac
@Ey_SmoKrac 2 месяца назад
not watchin allat it 3:14 in da damn mornin i tired asshit
@LeviathanKoda
@LeviathanKoda Год назад
this is so incredibly underrated
@user-nil_cyan
@user-nil_cyan 6 месяцев назад
What is "self"? ( self.Wind.X, self.Wi...)
@happe3513
@happe3513 8 месяцев назад
I haven't seen anyone else with this problem in the comments but every time I require the module it says attempt to call a table value.
@spriteman1925
@spriteman1925 10 месяцев назад
I hate math 🤠🤠🤠🤠🤠🤠🤠🤠🤠🤠🤠🤠🤠🤠
@bob-rx9yb
@bob-rx9yb 7 месяцев назад
Can i use this to make a cannon like bofors or flak 88 ?
@sadge6430
@sadge6430 5 месяцев назад
wcb
@sadge6430
@sadge6430 5 месяцев назад
8yt
@sarwix8306
@sarwix8306 9 месяцев назад
Idk why but this is the coolest video on roblox studio I have ever seen
@sadge6430
@sadge6430 7 месяцев назад
`
@theprancingprussian
@theprancingprussian 6 месяцев назад
very useful, im testing ideas on developing a matchlock gun system, a single tool instead of getting over my head with an entire game, helps great since the accurate physics of it performs way further from hitscan than other weaponry
@l8tralalt901
@l8tralalt901 9 месяцев назад
man but i hate math!
@Master_A-A
@Master_A-A 5 месяцев назад
Yo so the projectile curves for me without adding wind Any ideas why?
@illogicalsavings8268
@illogicalsavings8268 3 месяца назад
That's the gravity
@rielzedrielzed
@rielzedrielzed Месяц назад
@@illogicalsavings8268 💀
@sadge6430
@sadge6430 7 месяцев назад
ko-
@grevict
@grevict 9 месяцев назад
Thanks for the tutorial, so helpful :D
@Gray_mk
@Gray_mk 8 месяцев назад
how do i make it so when it touches a part it destroys and doesnt just go through it
@fidgetspinner71
@fidgetspinner71 8 месяцев назад
End the loop whenever the raycast detects something
@hotcrazy15
@hotcrazy15 10 месяцев назад
wow cool
@TinShredder
@TinShredder Год назад
very cool vid
@Al3xWarrior
@Al3xWarrior 10 месяцев назад
Very nice!
@sadge6430
@sadge6430 7 месяцев назад
das
@felipemfrudeli
@felipemfrudeli 9 месяцев назад
thx for the video
@cupcakewithrabies-eb4rq
@cupcakewithrabies-eb4rq 6 месяцев назад
How do I make it so that I can apply these physics to an already existing part?
@vlogsquad7113
@vlogsquad7113 6 месяцев назад
programming
@phyopyaelynn-wp6fc
@phyopyaelynn-wp6fc 5 месяцев назад
Unanchor it
@cupcakewithrabies-eb4rq
@cupcakewithrabies-eb4rq 5 месяцев назад
@@vlogsquad7113 i figured out thanks
@samdoesnotexist79
@samdoesnotexist79 Год назад
hello jit.
@hadderz4337
@hadderz4337 11 месяцев назад
hi wuzrd
@namebutworse
@namebutworse Год назад
projectile doesnt shoot and i did everything correctly what do i do
@Kylerisano
@Kylerisano Год назад
That's a you problem 🤠 🙌
@namebutworse
@namebutworse Год назад
@@Kylerisano :( (BWOOOMP) ;(
@illogicalsavings8268
@illogicalsavings8268 3 месяца назад
Ever fix it?
@haxking2
@haxking2 Год назад
great video, idk why but I've always been under the impression that this would've been more complex. quick question though, does using runservice to execute code every frame on client (even if it's just changing a few values) not a good practice?
@Antonio-vf2xj
@Antonio-vf2xj Год назад
Well i didnt see the video fully but yea, if ya uses renderstepped, but as its used on clientside i guess, it doesnt affect server at all, so maybe slighty lag but no server lag so like data saving and everything else is safe
@thetable8175
@thetable8175 Год назад
as far as I know you need to take into account people having different frame rates causing codes to run too fast or too slow, I've seen many games put for example dashes that update a BodyVelocity's direction every frame for a set amount of times and then destroy it causing higher fps to destroy the BodyVelocity earlier making you travel shorter while capping your fps at around 30 would make it go a lot further
@thetable8175
@thetable8175 Год назад
if you wanna do stuff with runservice I'd put checks with like ticks() to make sure your code acts as desired
@haxking2
@haxking2 Год назад
@@thetable8175 wouldn't delta time have the same effect though? or am I misunderstanding it
@thetable8175
@thetable8175 Год назад
@@haxking2 yeah delta time is the absolute difference between 2 times
@chiaweijie194
@chiaweijie194 Год назад
is it possible for me to do this without a tool?
@fidgetspinner71
@fidgetspinner71 Год назад
yes, thats why I made it into a module.
@SurrealTurnip
@SurrealTurnip Год назад
Fantastic video, exactly what I needed and you actually managed to explain it pretty well
@Xackory
@Xackory Год назад
Great vid
@VeryProPlayerYesSir1122
@VeryProPlayerYesSir1122 Год назад
local Projectile = require(Modules.Projectile).new(1,workspace:GetChildren(),Vector3.new(0,0,0),3, true) 15:08:41.240 Projectile is not a valid member of Folder "ServerScriptService.Modules" - Server - slingshot_server:9 please help me, the code gives this kind of error
@chanceplayz-roblox230
@chanceplayz-roblox230 Год назад
do u have the name in correctly
@Mufazl2120
@Mufazl2120 Год назад
Awesome😃
@CrystalizedGGG
@CrystalizedGGG 9 месяцев назад
for some reason this line has an error for me - newProjectile.Params.FilterType = Enum.RaycastFilterType.Whitelist
@NotTaskAgain
@NotTaskAgain 9 месяцев назад
Change it to "Enum.RaycastFilterType.Include" at the end, I think thats the issue
@_Sench
@_Sench 7 месяцев назад
Just incase you still need it. For some reason its underlined but it works in game my line- newProjectile.Params.FilterType = Enum.RaycastFilterType.Whitelist
@VeryProPlayerYesSir1122
@VeryProPlayerYesSir1122 Год назад
local RunService = game:GetService("RunService") local Debris = game:GetService("Debris") local Projectile = {} function Projectile.new(Gravity, Whitelist, Wind, DespawnTime, Visualize) local newProjectile = {} newProjectile.Gravity = Gravity newProjectile.Wind = Wind newProjectile.DespawnTime = DespawnTime newProjectile.Visualize = Visualize newProjectile.Params = RaycastParams.new() newProjectile.Params.FilterType = Enum.RaycastFilterType.Whitelist newProjectile.Params.FilterDescendantsInstances = Whitelist function newProjectile:Cast(start, dest, force) local conversion = (game.Workspace.Gravity) / 9.8 local vForce = (dest - start).Unit * force * conversion local a = Vector3.new(self.Wind.X, self.Wind.Y - self.Gravity * 9.8, self.Wind.Z) * conversion local t = 0 local currentPos = start local rayResult = nil local found = false local Connection = RunService.Heartbeat:Connect(function(dt) if not found then t = t + dt local projPos = Vector3.new( start.X + vForce.X * t + 0.5 * a.X * t * t, start.Y + vForce.Y * t + 0.5 * a.Y * t * t, start.Z + vForce.Z * t + 0.5 * a.Z * t * t ) rayResult = workspace:Raycast(currentPos, projPos - currentPos, self.Params) currentPos = projPos if self.Visualize then local Part = Instance.new("Part") Part.Size = Vector3.new(0.5, 0.5, 0.5) Part.Position = rayResult.Position Part.Anchored = true Part.CanCollide = false Part.Material = Enum.Material.Neon Part.Color = Color3.fromRGB(0, 255, 0) Part.Shape = "Ball" Part.Parent = game.Workspace Debris:AddItem(Part, 0.5) end if rayResult or t > self.DespawnTime then found = true end end end) while not found do wait() end Connection:Disconnect() if rayResult then print("Detected") end end return newProjectile end return Projectile Did i do anything wrong because the "rayResult = workspace:Raycast(currentPos, projPos - currentPos, self.Params)" is nil and "Part.Position = rayResult.Position" returns an error.
@MythIsTheLegend
@MythIsTheLegend Год назад
Since ray result is nil, your visualization will not follow anything since it does not exist so do Part.Position = projPos
@rei2261
@rei2261 Год назад
@@MythIsTheLegend that doesn't work
@MythIsTheLegend
@MythIsTheLegend Год назад
@@rei2261 It should work because if you do everything correctly and then set part pos to the projectile pos then it always follows the position of the part because if your raycast is nil it don't exist meaning your visual just doesn't go anywhere else.
@rei2261
@rei2261 Год назад
@@MythIsTheLegend ok
@R3DACTED3310
@R3DACTED3310 10 месяцев назад
why does the projectile spawn higher then the player
Далее
The ONLY Raycasting Tutorial You'll EVER NEED
23:54
Просмотров 23 тыс.
The Basics of Perlin Noise | Roblox Studio Tutorial
27:05
МОЮ ТАЧКУ РАЗБИЛИ...!
39:06
Просмотров 426 тыс.
I redesigned my game
23:32
Просмотров 80 тыс.
The Most ACCURATE BOUNCING Projectiles in ROBLOX!!!
15:06
How to Make a Roblox Ability: Level Two
26:01
Просмотров 1,6 тыс.
Making A CRAZY Physics FPS Game In Roblox
6:42
Просмотров 146 тыс.
the 4 steps people use to make amazing particles
22:49
Просмотров 249 тыс.
Roblox Studio Projectile System
13:53
Просмотров 8 тыс.
Optimizing Tweens - Roblox Scripting Tutorial
23:37
Просмотров 31 тыс.
Bye-bye Raycasting! There's a new kid on the block...
15:13