Hey! Just wanted to say this is a really good gun system. At least for my game all of the guns started out broken but I was able to fix them and with some minor improvements (default bullet hit sound, limb hit detection and damage based off limb, and a easier way to rig the Motor6Ds as they all needed different values) it is perfect for me. Just wanted to say thanks lol good job
i dont even need a gun system in my game but im happy that people like this who share without any price or anything still exist i subbed cuz you're a nice fellow
This is amazing miles, truly amazing. There are alot of roblox studio developers that publish models and its not all that, but this is amazing, and it has viewmodel (showing arms) and 3rd person + first person all in one! I been looking for a gun system like this for a while now. This deserves more recognition, you earned a sub! :)
I tried to make a weapon system almost the same as yours, but as I don't know how to use OOP, it was extremely messy, plus I couldn't get the shot to fire correctly for mobile players, so I gave up XD
@@ToothlessDev once you get the hang of oop it’s pretty easy, this system could’ve been much cleaner if I used things like inheritance, maybe I’ll remake it in the future
@@ToothlessDev this forum post has helped me a lot and I definitely think you should read it. you can still take the basic concepts and apply them to more advanced things. Here's the link to the post: devforum.roblox.com/t/all-about-object-oriented-programming/8585
I appreciate this sm, I'm trying to make an isometric shooter game and this is like the perfect gun system for it, was a lil broken because of a locked camera angle and such but I was able to fix them, thanks a lot for this
Hello, Remember me? Your system is really cool and I'm suprised you made it opensource lol. I made one myself, not good but I got inspiration from your system. But yours is more polished. Good job!!
You can add your own guns but you will need basic scripting knowledge. I linked a tutorial on the dev forum for how to properly rig any weapons your want for animating and for my gun system
This is a really good system, I been trying to move the camera down to achieve an aim down sights but whenever I do it the camera just reverts back to the original position, does anyone know how to fix this?
miles, can you do something like a laser from portal 2? with reflection cube and laser receiver? i just want do light laser function from "fireboy and watergirl"
I do not know if you still read the comments on this video. This System is what i'vve been looking for for over 3 months now. You derserve my sub. I need help tho, i can't get my own guns to work. When I equip the tool, the model appears in the workspace (not the viewmodel but the gun itself) none of the UI appears when I equip it either. I assume the Framework is not interacting with it. Any help would be appreciated.
I need help to create new weapons, I followed the tutorial on the forum and created the animations then I created a tool and put the parts of my weapon as in the tutorial and then I put the config script and put my animations, but when I play my weapons do not work.
amazing! also I tried your ledge climb system but it didn't work if there were a litle part on the top, I tried to fix that but I could not, any idea of how I can do? thanks!
It’s an intended part of the system so players can only grab onto ledges that have enough room. If you don’t want it then you will have to remove the function that does the check. If your confused you can add my discord which is Fahooey#3419
hey man, can you tell me how to fix the guns not working if they are given out by a script and not starterpack? cuz i have a lot of guns and it looks ugly in the hotbar.
Yo somethings wrong with the system, even in the game version and not my own the scripts don’t work at all. Is there any reason for this and how to fix?
It’s free, you don’t have to buy anything. I could definitely make something better now as my scripting skills have improved a lot but I didn’t want to refactor this whole system.
idk if you still want the solution but,go to the replicated storage,modules,framework,open the script and at the 301th layer, it says min zoom distance,change that to between 60 to 80
Replace in GunHandler script (In Server Storage on Module folder) from 378 stroke to until 393 to this code ``` local function OnRayHit(cast, raycastResult, segmentVelocity, cosmeticBulletObject) local hitPart = raycastResult.Instance local hitPoint = raycastResult.Position local normal = raycastResult.Normal local Char: Model? = raycastResult.Instance:FindFirstAncestorWhichIsA("Model")
if Char then local Humanoid: Humanoid? = Char:FindFirstChild("Humanoid") :: Humanoid if Humanoid then local distance = (hitPoint - weapon.firePoint.WorldPosition).Magnitude Humanoid:TakeDamage(math.clamp((weapon.Config.baseDamage / (math.clamp(distance / weapon.Config.damageDropoff, 1, 2))), weapon.Config.minDamage, weapon.Config.baseDamage)) MakeParticleFX(hitPoint, normal, hitPart) --you're good to go, that will detect every player/NPC. end end end ```
Hey! Just wanted to say this is a really good gun system. At least for my game all of the guns started out broken but I was able to fix them and with some minor improvements (default bullet hit sound, limb hit detection and damage based off limb, and a easier way to rig the Motor6Ds as they all needed different values) it is perfect for me. Just wanted to say thanks lol good job
how did u fix it? help me
how do you fix it?
i dont even need a gun system in my game but im happy that people like this who share without any price or anything still exist
i subbed cuz you're a nice fellow
preciate it
This is amazing miles, truly amazing. There are alot of roblox studio developers that publish models and its not all that, but this is amazing, and it has viewmodel (showing arms) and 3rd person + first person all in one! I been looking for a gun system like this for a while now. This deserves more recognition, you earned a sub! :)
This comment really means a lot to me, thank you. If you encounter any bugs or issues feel free to add my discord Fahooey#3419 and I will help you
@@miles1094 sure thing! Im glad you liked my comment, its true tho like this deserves a lot! God bless you
The gun system needs more attention; it was really well made and unique, unlike others remaking "OTS gun system" It's a solid 10/10
Thank you means a lot, maybe in the future I will remake the system. I plan on making a more in depth tutorial on how to use it tomorrow
@@miles1094 Tomarrow
would you be down to work on a game with me? i have a team and all of your stuff is insanely cool.
@@miles1094
@@miles1094 its work at r15
I'm an intermediate programmer, I noticed that you used OOP in a very nice way on this system, I'll use it to study more about it, thank you very much
I tried to make a weapon system almost the same as yours, but as I don't know how to use OOP, it was extremely messy, plus I couldn't get the shot to fire correctly for mobile players, so I gave up XD
@@ToothlessDev once you get the hang of oop it’s pretty easy, this system could’ve been much cleaner if I used things like inheritance, maybe I’ll remake it in the future
@@miles1094
Sorry to ask but where did you start learning OOP? Some youtube channel or some forum
@@ToothlessDev this forum post has helped me a lot and I definitely think you should read it. you can still take the basic concepts and apply them to more advanced things. Here's the link to the post: devforum.roblox.com/t/all-about-object-oriented-programming/8585
@@ToothlessDev🦷🦷🦷🦷🦷🦷🦷🦷🫀
I appreciate this sm, I'm trying to make an isometric shooter game and this is like the perfect gun system for it, was a lil broken because of a locked camera angle and such but I was able to fix them, thanks a lot for this
someone who doesnt f*** around and actually gives the link, earnt yoruself a sub my guy
Can you make a tutorial on how you made the over-the-shoulder camera? That will help me a lot for my gun system that's inspired by your system.
THIS IS SICK, and plus you put it put to the public? i'm good at animation but crap at scripting, thanks dude, you're the BEST!
Same
Animation is easy. Scripting is hard you’ll get there
Amazing work, Miles! - [This deserved to be sold ngl, it's very proper.]
thank you means alot. I'm just too lazy to remake the whole system so it has cleaner code and just functions better in general
the gun system works but it breaks when i use a startercharacter
@@miles1094
AYE DIS SONG HAD ME JAMMIN FR
Pretty Good, gun system by the way. using it for my Roblox Swiss community nation aliked thank you very much!
Tbh you have made an amazing start to your roblox yt tutorials! Keep this up 😀
I totally will! And thanks for the comment
honestly u helped me being an roblox dev
Hello, Remember me? Your system is really cool and I'm suprised you made it opensource lol. I made one myself, not good but I got inspiration from your system. But yours is more polished. Good job!!
Thank you! and I do remember your comment from the original showcase.
Cool system! In the future could we possibly get a tutorial on how to add new guns?
I can make one tonight, thats a good idea thank you
@@miles1094 Where’d the tutorial go? It was public before..
@@rodyplayz TH-cam took it down and I lost the file
@@miles1094 is there a way to refill the ammo once it runs out?
@@miles1094Is it possible that you can make another one?
Instant Subscribe, Just Amazing
Thank you means a lot!!
Yo This is clean af, Ty.
Really cool, ngl and made out off scratch, 10/10
Hello, Thank You so Much for this Gun System. Im wondering If you could Add AK-47? or any other automatic Guns, Thanks!
You can add your own guns but you will need basic scripting knowledge. I linked a tutorial on the dev forum for how to properly rig any weapons your want for animating and for my gun system
@@miles1094 Alright, I will Try Thank you.
@@OFFhead Im thinking of making a tutorial on how to add guns to my system so I would wait for that
@@miles1094 Yeah That would Be great, I tried Making one and it Didnt work.
@@OFFhead should be done by tonight or tomorrow. I’m just busy with work most of The Weeknd
omg ur da best tysm me and my brother can play dis all dayyyyyy new subbb
Does anyone know why I can’t make R15 animations function even when I put in the Anim ID but R6 works?
Is it possible that you can remake the tutorial on how to make your own guns?
I went into the game but nothing worked for me you holding the gun but my character isn't its like near his chest
70K VIEWS AND ONLY 827 SUBSCRIBERS? new sub
This is a really good system, I been trying to move the camera down to achieve an aim down sights but whenever I do it the camera just reverts back to the original position, does anyone know how to fix this?
Damn, this is my first time to get a new Gun System.
miles, can you do something like a laser from portal 2? with reflection cube and laser receiver? i just want do light laser function from "fireboy and watergirl"
To be honest I been looking for a gun system for my game, and I might use this! Just wanna test It of course etc etc!
how to edit the animations for example in moon animator if there are folders in the main keyframe??
can you pls make a tutorial how to do more guns but the system is amazing
im vibing on the music
Nah this is actually sick. Lub you man 🫶
oh its here already, cool
I do not know if you still read the comments on this video.
This System is what i'vve been looking for for over 3 months now. You derserve my sub.
I need help tho, i can't get my own guns to work.
When I equip the tool, the model appears in the workspace (not the viewmodel but the gun itself) none of the UI appears when I equip it either.
I assume the Framework is not interacting with it. Any help would be appreciated.
I need help to create new weapons, I followed the tutorial on the forum and created the animations then I created a tool and put the parts of my weapon as in the tutorial and then I put the config script and put my animations, but when I play my weapons do not work.
I will make a tutorial going over how to setup weapons, it should be out soon
@@miles1094 Thank you so much
I wish it had an L85
Hi mister, the animations doesn´t work for me, in the preview of roblox studio i can´t aim and the animations dont play.
i really like this, but my only problem is that i cant get the idle animation for the m1911 to work
amazing! also I tried your ledge climb system but it didn't work if there were a litle part on the top, I tried to fix that but I could not, any idea of how I can do? thanks!
It’s an intended part of the system so players can only grab onto ledges that have enough room. If you don’t want it then you will have to remove the function that does the check. If your confused you can add my discord which is Fahooey#3419
hi i dont know but the animations and the shoot part dont work can you help me?
hey man, can you tell me how to fix the guns not working if they are given out by a script and not starterpack? cuz i have a lot of guns and it looks ugly in the hotbar.
How did you make the buttons for the cell phone? I can't find any video that explains about putting buttons in tools
is it normal that when i load into the game without adding anything the weapons don't work
Can you show how to make a gun system where the camera isnt locked
can u link some animations because i cant seem to find any that match the parts
Bro its 10/10 but i just want the Third Person System and the script so the Arms move with the camera is there any way to just get these two funcions
Amazing tutorial by the way🔥does this have moblie controls
Edit: and if not can you add it
all of the main inputs use context action service so you can add mobile buttons yes. But you will have to customize them to your own liking.
hey uhm when i go 3rd person I cant see the gun instead its a part, the same size of the gun
hey i was wondering if i could use your aim in system with my gun kit? if not its okay
Heya man. Very good system, but I have a little problem. How to disable TeamKill?
this looks nice
can you please do a combat system or a parkour system
how to change equip time? and how to make it only third person mode where cant zoom in when equipped gun?
Can you make a tutorial on how to add weapons?
Can anyone help me the guns wont shoot
i made a mobile button for my game (With ContextActionUtily) and i have only 1 question, how i add a toggleable button? for the AIM
question is there a way I can import my own animations in the script?
Unfortunately it no longer is able to be loaded in roblox studio.
Hey! are you available for commission? I would love for you to help create a gun system for my game.
can you make sniper? (with scope gui lol)
for some reason i cant get it to work in roblox studio :( keep up the good work tho :)
Amazing!
Why do my guns disappear when i equip them😢
for some reason it breaks when i use it with a startercharacter
i need a revolver gun system man.
Yo somethings wrong with the system, even in the game version and not my own the scripts don’t work at all. Is there any reason for this and how to fix?
Yo, I’m looking for a system very similar to this just some stuff changed. I’d be willing to pay for a custom system
when i press play it just sends me in with no actual working guns and animations either im stupid or im stupid pls help lol
you need animation spoofer for put the IDs
when im trying to make a new gun nothing appears its like no script was inserted to the tool please help me.
Did you place FireAttach? Take it from any gun and place it in muzzle
am i doing something wrong or the animations dont work at all even inside of the game its self
I'm putting my animations on the AK 47 but it's not going, do you have any tips to solve this?
animations are bugged
2:18 why?
how do i fix it it wont use the animations
where to get guns because theres so many guns in model that doesnt work
damn, thats generous!!!
MIGHT SOUND CRZY BUT HOW DO I MKA EIT SO THE GUN ISNT A TOOL?
How do i fix the weapons breaking?? its only being held at handle and not workin
tbh i think if i saw im gona hav to put the viewmodel into something since its in severstorage or am i wrong
I have an issue when i equip gun in viemodel it breaks also in what way i can add custom guns
What was the problem you had?
thank you
Im sorry, but is there anyway that I could get this system?
for some reason the reload isntworking i did everything but its still good
Cool. If I didn't script I would buy but I could make a better one by myself.
It’s free, you don’t have to buy anything. I could definitely make something better now as my scripting skills have improved a lot but I didn’t want to refactor this whole system.
Can you make a r15 version plz
Can u make a rpg or a flamethrower
ive put everything good but that not working
Looks like rudevs gun system ngl
hi bro, how to remove FPP cam ? bug when staying in this mode
idk if you still want the solution but,go to the replicated storage,modules,framework,open the script and at the 301th layer, it says min zoom distance,change that to between 60 to 80
can u do fivem system but R6?
I have a bug where i shoot at players accessories it blocks the gun shots does anybody know the fix to this?
maybe make a script that makes all the accessories canquery = false
Replace in GunHandler script (In Server Storage on Module folder) from 378 stroke to until 393 to this code
```
local function OnRayHit(cast, raycastResult, segmentVelocity, cosmeticBulletObject)
local hitPart = raycastResult.Instance
local hitPoint = raycastResult.Position
local normal = raycastResult.Normal
local Char: Model? = raycastResult.Instance:FindFirstAncestorWhichIsA("Model")
if Char then
local Humanoid: Humanoid? = Char:FindFirstChild("Humanoid") :: Humanoid
if Humanoid then
local distance = (hitPoint - weapon.firePoint.WorldPosition).Magnitude
Humanoid:TakeDamage(math.clamp((weapon.Config.baseDamage / (math.clamp(distance / weapon.Config.damageDropoff, 1, 2))), weapon.Config.minDamage, weapon.Config.baseDamage))
MakeParticleFX(hitPoint, normal, hitPart)
--you're good to go, that will detect every player/NPC.
end
end
end
```
its good but u cant publish it bc its not a real plugin.
Whats the song I forgot
A question i can it a Inspect anim?
pleaseadd more guns to this
is it broken or something? The animations dont work
it is not working for me
how do i set this up?
why are the weapons bugged and the gui not showing ??
Add my discord .fahooey and I can help you
I dont have animation please help me !!!