Want to learn how to make animations, like the one in this video? Check this out! th-cam.com/video/Uc1qpSqPBGw/w-d-xo.html Got any ideas you want me to make, comment them below! Thanks for watching :)
This was a big help, compared to the last flying script tutorial I followed last year. I managed to successfully tweak the script where it could work for a segway rolling hoverboard. Thanks for sharing!
MY HERO BRO. i needed to implement flying into my feline rpg but i couldnt find any good resources for it edit: next can you help with custom model footplanting? i want the feet of my characters to land on slopes and such properly :3
It did not work. I spend whole after noons following tutorials and it never works when it comes to flying. It just never works. I press the space bar once. My character jumps. I spam it my character keeps jumping. I hold it my character keeps jumping. I dunno what I did wrong :(
with it all being in a local script, wouldn't hackers be able to totally exploit this? or am i missing something? i was told the character movement stuff needs to happen server side
Why is my animation not working correctly . The Animation is Bugged even thought i wrote the script correctly ? Do i have to stop all the animations of the character like walk , idle , etc
Can you show me your code? It's possible you might've made a mistake somewhere. Also, did you set the animation priority to 'Action'. This is needed to override the default animations when you're flying :3
Just open the animation back up in the animation editor and change the animation priority from there, I think it's the 3 little dots you click, then republish it and update the ID@@zythgalaxy
@@Scrip_tix local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local HumanoidRootPart = character:WaitForChild("HumanoidRootPart") local camera = game.Workspace.CurrentCamera local flying = false local speed = 50 local animation = Instance.new("Animation") animation.AnimationId = "rbxassestid://17117449368" local animator = character:WaitForChild("Humanoid"):FindFirstChildOfClass("Animator") local animationTrack = animator:LoadAnimation(animation) local function fly()
@@BugattiKing10 like I stated, it's only good if you're asking for something relatively simple. if you want it to correct code that uses remotevents or bindablevents then you'll notice the amount of mistakes it makes.
@@BugattiKing10 no matter how good you explain a prompt to something, how are they going to make use of your code if you utilize your own framework? not only will it get confused, it'll give you the wrong data, and if you use it without your own revision it's going to break everything. hope that makes sense.
@@Zamasublack123 due i made the mistake of editing this script in a localscript 300+ code, since i hadn't learnt remoteevents, now i haft to trasnfer and fix this localscript so its serversided
Want to learn how to make animations, like the one in this video? Check this out! th-cam.com/video/Uc1qpSqPBGw/w-d-xo.html
Got any ideas you want me to make, comment them below! Thanks for watching :)
hi i cant fly can u help me
this is my 2 video and it is not working can u help me?
This was a big help, compared to the last flying script tutorial I followed last year. I managed to successfully tweak the script where it could work for a segway rolling hoverboard. Thanks for sharing!
Glad it helped!
wow, just wow, u were the only one who really teach how to make a fly script, tysm
MY HERO BRO. i needed to implement flying into my feline rpg but i couldnt find any good resources for it
edit: next can you help with custom model footplanting? i want the feet of my characters to land on slopes and such properly :3
Glad it helped :)
when i fly, i just get thrown away many studs and cant control myself while flying
You should make a video about trying to make a game in 1 week (or month or whatever to ur likings) that would be insane!
Hello how to make a button for skipstage
I show you how to make it in this video: Just made it! th-cam.com/video/0hIQgUETgpo/w-d-xo.html
It did not work. I spend whole after noons following tutorials and it never works when it comes to flying. It just never works. I press the space bar once. My character jumps. I spam it my character keeps jumping. I hold it my character keeps jumping. I dunno what I did wrong :(
Please show me your code. I can't help you without it :3
pls put code in comments
It doesn't work, the character just jumps
Did you do StarterCharacterScripts and local code? Because I accidentally did just a normal code not a local code for the shift to sprint one
@@Dizzey.gachatuber it doesn work
What button do you press to fly after making the script
with it all being in a local script, wouldn't hackers be able to totally exploit this? or am i missing something? i was told the character movement stuff needs to happen server side
how do I make so it moves with W A S D
How do i make it so you ride a model while flying
can you make tutorial about velocity please?
but the peoples also make velocity tutorials on roblox studios do you need to search on youtube
Why is my animation not working correctly . The Animation is Bugged even thought i wrote the script correctly ? Do i have to stop all the animations of the character like walk , idle , etc
Can you show me your code? It's possible you might've made a mistake somewhere. Also, did you set the animation priority to 'Action'. This is needed to override the default animations when you're flying :3
@@Scrip_tix ok but how do i set it to action (nvm i have found and yeah i have put Core instead of it . So yeah thank you so much brother )
Just open the animation back up in the animation editor and change the animation priority from there, I think it's the 3 little dots you click, then republish it and update the ID@@zythgalaxy
how me can made, flying disable after you fly 10 secs?
It’s just taking me to a certain point in map
It gives me error "Property Animator.EvaluationThrottled" is not currently enabled" what i do wrong?
Can you show me your full code?
@@Scrip_tix local UserInputService = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local HumanoidRootPart = character:WaitForChild("HumanoidRootPart")
local camera = game.Workspace.CurrentCamera
local flying = false
local speed = 50
local animation = Instance.new("Animation")
animation.AnimationId = "rbxassestid://17117449368"
local animator = character:WaitForChild("Humanoid"):FindFirstChildOfClass("Animator")
local animationTrack = animator:LoadAnimation(animation)
local function fly()
local AlignOrientation = Instance.new("AlignOrientation",HumanoidRootPart)
AlignOrientation.Mode = Enum.OrientationAlignmentMode.OneAttachment
AlignOrientation.Attachment0 = HumanoidRootPart:WaitForChild("RootAttachment")
AlignOrientation.Responsiveness = 50
local AlignPosition = Instance.new("AlignPosition", HumanoidRootPart)
AlignPosition.Mode = Enum.PositionAlignmentMode.OneAttachment
AlignPosition.Attachment0 = HumanoidRootPart:WaitForChild("RootAttachment")
AlignOrientation.MaxTorque = 100000
AlignPosition.MaxForce = 100000
flying = true
animationTrack:Play()
while flying do
RunService.RenderStepped:Wait()
AlignOrientation.CFrame = CFrame.new(camera.CFrame.Position, HumanoidRootPart.Position)
AlignPosition.Position = HumanoidRootPart.Position + ((HumanoidRootPart.Position - camera.CFrame.Position).unit * 50)
end
end
local function endFlying()
animationTrack:Stop()
local AlignPosition = HumanoidRootPart:FindFirstChild("AlignPosition")
local AlignOrientation = HumanoidRootPart:FindFirstChild("AlignOrientation")
if AlignPosition and AlignOrientation then
AlignPosition:Destroy()
AlignOrientation:Destroy()
end
flying = false
end
UserInputService.InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.Space then
if not flying then
fly()
else
endFlying()
end
end
end)
game.Workspace.Baseplate.Touched:Connect(function(otherPart)
if otherPart.Parent == character then
endFlying()
end
end) idk what i did wrong🤣😂
@@Scrip_tix it wont let me post it
Your spam playing your animation thats why
Can someone tell me how to fly longer because the script works but after like 2 seconds it stops
Hm, can you show me your code? How does it stop after 2 seconds?
Guys if it doesn't work for you, pop it into chatgpt and ask it to correct your code
very very bad idea, never use ai to fix your code unless its some basic bare bones shit
@@dawnh how is ai bad it works good if u explian it correctly
@@BugattiKing10 like I stated, it's only good if you're asking for something relatively simple. if you want it to correct code that uses remotevents or bindablevents then you'll notice the amount of mistakes it makes.
@@dawnh yea thats why i said if you explain to your ai teh code correctly then it hsouldnt rlly mess up
@@BugattiKing10 no matter how good you explain a prompt to something, how are they going to make use of your code if you utilize your own framework? not only will it get confused, it'll give you the wrong data, and if you use it without your own revision it's going to break everything. hope that makes sense.
It need runservice wait() if flying
Juste one error it make while true do with run service
Im not flying, i just have my character staring at a random position when i jumped
Interesting, can you show me your code?
show him your code💀💀
Btw can someone help wont load thr animation
i know i am really late but its not working and i spent hours trying to get it to work so help would be appreciated PLEASE!!!!!!!!
awh did i miss something i can fly???
maybe i did sum wrong but it didnt work
Could you show me your code?
Can't get it to work
It didn’t work
Can you show me your code?
@@Scrip_tix sure
Its not working :(
it doesnt work
It did not work I spent like 2 hours on this 😣
Can you show me your code?
!!!
can anyone put the script in the comments
cant*
Body is dead now
Ez enough I did one myself
lies.
@@BurakHardblood you want the script dude?I can even explain how I made it
@@Zamasublack123 due i made the mistake of editing this script in a localscript 300+ code, since i hadn't learnt remoteevents, now i haft to trasnfer and fix this localscript so its serversided
am I the only one who uses BodyVelocity to make fly script?
It dead now