#How to make an arm that widens (But in one direction)

26 messages · Page 1 of 1 (latest)

royal quarry
#

Like Luffy = D

unique python
#

size

royal quarry
#

@unique python When I use Size its enlargement of both sides my arm I want its to do it just for one side

unique python
#

just change its cframe with the size

royal quarry
#

Ok ok

unique python
#

studio** You are now Level 2! **studio

royal quarry
#

script.Parent.Righthand.Size = CFrame.new(0,8,0)

unique python
#

it work?

#

you gotta change the weld too

#

or make another part overlaying the arm

#

@royal quarry

unique python
royal quarry
#

ok

#

thx for help

royal quarry
#

D=

unique python
#

change the weld offset

#

or just make another part overlaying the arm

#

so it doesnt move the character

royal quarry
#

Ok

royal quarry
unique python
#

weld.C0 & weld.C1

royal quarry
#

oh ok

royal quarry
unique python
#

weld.C0 and C1 work like this

local part0 = script.Parent -- example part
local part1 = game.Workspace.Part1 -- other example part
local weld = Instance.new("Weld")
weld.Parent = part0
weld.Part0 = part0
weld.Part1 = part1
weld.C0 = part0.CFrame
weld.C1 = part0.CFrame * CFrame.new(0, 8, 0)
#

you get it?