of     1   

FaZeRoster
#168929441Monday, July 27, 2015 12:53 AM GMT

This script isn't working for Back flipping when jumping game.Players.PlayerAdded:connect(function(player) while not player.Character do wait()end local character=player.Character local animateScript=character.Animate animateScript.fall.FallAnim.AnimationId="http://www.roblox.com/asset/?id=253014225" end)
baldo46
#168929685Monday, July 27, 2015 12:56 AM GMT

connect to JumpRequest() event on UserInputService. The setup you have sets it to do a backflip when the player enters not when they press space.
FaZeRoster
#168929903Monday, July 27, 2015 12:59 AM GMT

Where do I find UserInputService?
baldo46
#168930048Monday, July 27, 2015 1:00 AM GMT

FaZeRoster
#168930671Monday, July 27, 2015 1:08 AM GMT

Where do I put the script at? Also kinda confused on how to do this since I'm not a LUA coder. I only code in Visual Basic
FaZeRoster
#168931608Monday, July 27, 2015 1:18 AM GMT

??
Hyporos
#168931991Monday, July 27, 2015 1:22 AM GMT

faze if you attempted to make a back flip script then you should know what hes talking about
FaZeRoster
#168932195Monday, July 27, 2015 1:24 AM GMT

I've found the script in Toolbox and I'm temping to fix it myself but have failed many times so I'm asking for help.
AsylumAngels
#168933013Monday, July 27, 2015 1:33 AM GMT

So you dont know how to code, and you want us to fix a broken free model?
FaZeRoster
#168933202Monday, July 27, 2015 1:35 AM GMT

I guess you could say that. Since I've failed multiple times yes.
AsylumAngels
#168933545Monday, July 27, 2015 1:39 AM GMT

Read the wiki...
instawin
#168933818Monday, July 27, 2015 1:41 AM GMT

game.Players.PlayerAdded:connect(function(player) while not player.Character do wait()end local character=player.Character local animateScript=character.Animate animateScript.fall.FallAnim.AnimationId="http://www.roblox.com/asset/?id=253014225" end) the problem with this script, (if it even works on the first time, but it looks like it would) is that it only changes the AnimationId of FallAnim every time they join the game. so it would only work once. you need to do it when they respawn too. game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) local animScript = char:WaitForChild("Animate") print("anim script loaded") local fall = animScript:WaitForChild("fall") print("fall loaded") local fallAnim = fall:WaitForChild("FallAnim") print("fallanim loaded") fallAnim.AnimationId = "rbxassetid://253014225" end) end) if that doesn't work, tell us what output you get
FaZeRoster
#168933944Monday, July 27, 2015 1:43 AM GMT

Tried this it didn't work... game.Players.PlayerAdded:GetService("UserInputService").JumpRequest:connect(function(player) while not player.Character do wait()end local character=player.Character local animateScript=character.Animate animateScript.fall.FallAnim.AnimationId="http://www.roblox.com/asset/?id=253014225" end) Also tried this and it didn't work game:GetService("UserInputService").JumpRequest:connect(function(player) while not player.Character do wait()end local character=player.Character local animateScript=character.Animate animateScript.fall.FallAnim.AnimationId="http://www.roblox.com/asset/?id=253014225" end)
instawin
#168934294Monday, July 27, 2015 1:46 AM GMT

did you not try my script?
FaZeRoster
#168934343Monday, July 27, 2015 1:47 AM GMT

That doesn't work and the output.. Just a auto-save message is there a place I have to place this LocalScript?
instawin
#168934379Monday, July 27, 2015 1:47 AM GMT

instawin
#168934455Monday, July 27, 2015 1:48 AM GMT

oh dear god, don't tell my you posted my script in a local script and your local script probably wasn't running either put my script in a server script, in ServerScriptService
FaZeRoster
#168934761Monday, July 27, 2015 1:51 AM GMT

Running your script I get... anim script loaded fall loaded fallanim loaded 20:50:58.777 - httpGet http://www.roblox.com/asset/?id=253014225&serverplaceid=95206881&clientinsert=0 failed. Trying again. Error: HTTP 403 (HTTP/1.1 403 Asset is not trusted for this place). Elapsed time: 0.235005 20:50:59.026 - Content failed for http://www.roblox.com/Asset/?id=253014225&serverplaceid=95206881&clientinsert=0 because HTTP 403 (HTTP/1.1 403 Asset is not trusted for this place) 20:50:59.030 - Content failed because HTTP 403 (HTTP/1.1 403 Asset is not trusted for this place)
FaZeRoster
#168935480Monday, July 27, 2015 1:58 AM GMT

Errors above^^
instawin
#168935655Monday, July 27, 2015 2:01 AM GMT

"HTTP 403 (HTTP/1.1 403 Asset is not trusted for this place)" that is because you don't own the asset, buddy
FaZeRoster
#168935758Monday, July 27, 2015 2:02 AM GMT

Damn it...
FaZeRoster
#168935835Monday, July 27, 2015 2:03 AM GMT

Any suggestions so I can have a animation so when jumping u do a front flip or back flip?

    of     1