Adding attachments to weapon

i have a gun, and a supressor attachment

how do i add the supressor to the gun

1 Like

Simply clone and parent the suppressor to the gun.

--example
local Gun = --[[Get the gun]]
local Attachment = --[[Get the suppressor]]

Now, after you set the variables, you can clone the attachment and parent it to the gun.

local Suppressor = Attachment:Clone()
Suppressor.Parent = Gun

Note: This is just an example of one way you can “add the supressor to the gun”!

1 Like

i am trying to get the suppressor onto the muzzle of the gun

1 Like

Set the suppressor CFrame to the muzzles CFrame

1 Like