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

Tool Reloading? Animation Help

Asked by 7 years ago

I am working on a game, this is a gun script for a gun in my game. This is the script only, there is alot of other things in the gun, so it'll be hard to copy and paste =). Anyway I need an animation for the gun. If googled and youtubed every single thing I can think of. And now that the roblox forums decided to take a dump, I need help from here. Thanks for any suggestions. pasted starting at the reload function. (Which is the place where i guess the animation script should be)

001function reload(mouse)
002    reloading=true
003    mouse.Icon=ReloadCursor
004    while sp.Ammo.Value<ClipSize and reloading and enabled do
005        wait(ReloadTime/ClipSize)
006        if reloading then
007            sp.Ammo.Value=sp.Ammo.Value+1
008            check()
009        else
010            break
011        end
012    end
013    check()
014    mouse.Icon=Cursors[1]
015    reloading=false
View all 280 lines...
0
You have to make your own animation or use ROBLOX published animations and you cannot load someone else's from their inventory, so sharing the asset is not possible unless the keyframes are uploaded which requires you to import and publish it yourself but you will most likely not find one. I suggest inserting a gear and use its animation, or making your own one. Auzer 7 — 7y
0
thx, i made my own one, but i just need the script so that the animation will play when i click r, reloading JakePlays_TV 97 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

Here's the rest of the script in case i need to change variables. It runs from start till the line before the reload function

001-------------------------------------Gun info
002ToolName="M4A1"
003 
004ClipSize=30
005ReloadTime=3.5
006Firerate=.08
007MinSpread=0.15
008MaxSpread=0.15
009SpreadRate=0.2
010BaseDamage= 30
011automatic=true
012burst=false
013shot=false          --Shotgun
014BarrlePos=Vector3.new(-2.5,.60,0)
015Cursors={"rbxasset://textures\\GunCursor.png"}
View all 269 lines...
Ad

Answer this question