Rynappel
(Rynappel)
December 1, 2020, 7:53am
#1
In games such as Arsenal and Phantom Forces, the arms follow the camera wherever its pointing. This s what I’m trying to do with my game, how do I do this?
sjr04
(uep)
December 1, 2020, 7:56am
#2
What these games do is use fake arms and weld the weapon to the arms, they don’t actually use the real arms.
There are several topics you can use to get started with this:
This guide was originally written for scriptinghelpers . The original can be found here .
In this post we will be talking about creating our very own filtering enabled friendly first person shooter (FPS) game. I do want to make clear though that I won’t be covering how to actually make the weapon shoot in this article. All we are going to be covering is the visuals meaning having the character aim down sights, look up and down, etc. Maybe we’ll talk about shooting another day.
Things to take …
This is my first tutorial here!
Point out any errors in the code, please. I might have missed something.
0. Quick info
0.1
I have made many past attempts at making pew pew guns on roblox in the past, and i thought i’d share some of the “basic” process for beginners here. Keep in mind none of this needs to be the way it is here, feel free to use your own methods.
0.2
This article covers the very basics on setting up a working gun, making it aim (and how to make it easy to add other thin…
This is not in the 1st part thanks to the devforum having issues with longer posts. Firefox crashed twice at the end of the previous one.
This part covers equipping, reloading, and firing the gun. It’s the last part.
1. Smooth value module
I wrote it myself. It’s useful for making movement more smooth with less code. There are a bunch of functions once you create a smoothValue object, mostly :set() to set target, :get() to get it and:update() for the obvious updating.
The module: (Prepared f…
3 Likes
Rynappel
(Rynappel)
December 2, 2020, 8:42am
#3
Thank you, I’ll have a look into this
Rynappel
(Rynappel)
December 4, 2020, 3:22am
#4
I looked into the tutorials and they are pretty confusing, I just want a simple easy way of making the arms visible and make them follow the cameras movement.