Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Trajectory of a snowball not working correctly?

Asked by 4 years ago
Edited 4 years ago

I'm trying to use the equation that describes the trajectory of a projectile for a snowball in my game. I think I put the equation correctly but it's not working.

Server Script:

01eventsFolder.FireSnowball.OnServerEvent:Connect(function(player,angle,mousePos,playerPos,vectorPos,velocity,height,vector,playerCFrame)
02 
03    local breakBool = false
04    local i = 1
05    local snowball = game.ServerStorage.Snowball.Handle:Clone()
06    snowball.Parent = game.Workspace
07    snowball.Position = playerPos
08    snowball.Name = "Snowball"
09    local part = Instance.new("Part") --Creates a part at the vector position so lerp works
10    part.Parent = game.Workspace
11    part.Transparency = 1
12    part.CanCollide = false
13    part.Anchored = true
14    part.Position = vectorPos
15 
View all 45 lines...

Localscript(this is working):

01local button = script.Parent
02local event = game.ReplicatedStorage.RemoteEvents.ToggleSnowball
03local event2 = game.ReplicatedStorage.RemoteEvents.FireSnowball
04local velocity = 3
05local border = button.Parent.Outline
06local player = game.Players.LocalPlayer
07local character = player.Character
08local mouse = player:GetMouse()
09local debounce = true
10 
11button.MouseButton1Down:Connect(function(player)
12 
13    if not character or not character.Parent then
14        character = player.CharacterAdded:wait()
15    end
View all 56 lines...

The snowball just ends up behaving the same way no matter what angle I throw it at.

Also, here is the equation for the trajectory of a projectile: y = h + x * tan(?) - g * x² / 2 * V?² * cos²(?)

Thanks! (Also sorry for the lack of comments)

0
I think it could be that the xAxis variable is always a fraction, but when I make a new variable for it with a value of just velocity*i the snowball just disappears instantly thecelestialcube 123 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

I came back to this after nearly a year, and I found a much simpler solution to my problem. I was trying to make a snowball shoot at different velocities depending on the camera angle.

If you're someone who's looking to do this in the future, don't do what I did and pull out calculus to bash the velocity. Just take the camera lookVector and multiply it by a velocity.

Ad

Answer this question