ROBLOX Scripting | Character Customization [FULL TUTORIAL]

ROBLOX Scripting | Character Customization [FULL TUTORIAL]

Previized

7 лет назад

105,786 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@belt
@belt - 28.02.2017 03:51

first lmao called it in de discord (pin me papi)

Ответить
@doctorelijah
@doctorelijah - 22.10.2022 02:34

Why do you sound like you're holding back tears?

Ответить
@SoupShwoup
@SoupShwoup - 22.05.2021 08:51

it didn't work, but that's probably just because I suck at everything.

Ответить
@Glushyslushyglunkerplop
@Glushyslushyglunkerplop - 24.02.2021 21:36

so uh it does what it's supposed to do but the model keep welding sideways?

Ответить
@b3y0ndbr0h6
@b3y0ndbr0h6 - 08.01.2021 20:19

When it says " parent is not a valid member of Model "LeftArm" " what do I do?

Also sorry for being 3 years late

Ответить
@rakshachabalalsing338
@rakshachabalalsing338 - 04.12.2020 03:05

can u put the link to the script so we can just copy and past pls D:

Ответить
@Particing
@Particing - 14.10.2020 02:04

This is an actually good tutorial! It is actually scripting instead of going to the toolbox and getting an actual virus. Now in the future, I recommend using the new WeldConstraint feature. It doesn't need C0. By the way, most of you are having problems because you didn't parent the weld to the character's arm or whatever you are welding it to.

Ответить
@domina_hathes8153
@domina_hathes8153 - 11.10.2020 04:07

it does not work for me :/

Ответить
@ee-wx3hy
@ee-wx3hy - 14.09.2020 02:27

weakie

Ответить
@dominicballinger6536
@dominicballinger6536 - 08.09.2020 02:58

Have a way to make something like in super hero life II? I want to make a character customizer gui like that, with 3d parts, and different things I can put on the character.

Ответить
@Tony_Re-imagined
@Tony_Re-imagined - 22.08.2020 18:08

Also, i did ClonedLA.CFrame since im morphing into a model, and CFrame didnt turn blue for some reason

Ответить
@Tony_Re-imagined
@Tony_Re-imagined - 22.08.2020 17:52

What do i do if i actually want to morph into a model? Like with humanoid parts and stuff

Ответить
@RJ-sr4kf
@RJ-sr4kf - 16.08.2020 19:58

this isnt working for me i have the female body tyoe and i replaced the arms and legs and torso with the other names of the body part s but it still isnt working

Ответить
@chairy9775
@chairy9775 - 28.07.2020 07:45

Script please- It won't work for me.

Ответить
@Kuz0nx
@Kuz0nx - 25.06.2020 22:45

SLOW DOWN

Ответить
@gtcurrent3195
@gtcurrent3195 - 21.05.2020 14:59

*lots of scripting there buddy*

Ответить
@JaimeGaming
@JaimeGaming - 27.04.2020 11:39

I want to weld a model to the players hand, could somebody help me?

Ответить
@АртёмПетришин-ф7г
@АртёмПетришин-ф7г - 21.04.2020 06:36

local rp = game.ReplicatedStorage
local LeftArm = rp:WaitForChild('LeftArm')
local LeftLeg = rp:WaitForChild('LeftLeg')
local RightArm = rp:WaitForChild('RightArm')
local RightLeg = rp:WaitForChild('RightLeg')
local Torso = rp:WaitForChild('Torso')

game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
char:WaitForChild('Left Arm').Transparency = 1
char:WaitForChild('Left Leg').Transparency = 1
char:WaitForChild('Right Arm').Transparency = 1
char:WaitForChild('Right Leg').Transparency = 1
char:WaitForChild('Torso').Transparency = 1

--// Left Arm
local ClonedLA = LeftArm:Clone()
ClonedLA.Parent = char

ClonedLA.Main.CFrame = char:WaitFirChild('Left Arm').CFrame

local Weld = Instance.new('ManualWeld')
Weld.Part0 = ClonedLA.Main
Weld.Part1 = char:WaitForChild('Left Arm')
Weld.C0 = ClonedLA.Main.Cframe:inverse() * char:WaitForChild('Left Arm').CFrame
Weld.Parent = char:WaitForChild('Left Arm')


--// Left Leg
local ClonedLL = LeftLeg:Clone()
ClonedLL.Parent = char

ClonedLL.Main.CFrame = char:WaitFirChild('Left Leg')
local Weld = Instance.new('ManualWeld')
Weld.Part0 = ClonedLL.Main
Weld.Part1 = char:WaitForChild('Left Leg')
Weld.C0 = ClonedLL.Main.Cframe:inverse() * char:WaitForChild('Left Leg').CFrame
Weld.Parent = char:WaitForChild('Left Leg')


--// Right Arm
local ClonedRA = RightArm:Clone()
ClonedRA.Parent = char

ClonedRA.Main.CFrame = char:WaitFirChild('Right Arm')
local Weld = Instance.new('ManualWeld')
Weld.Part0 = ClonedRA.Main
Weld.Part1 = char:WaitForChild('Right Arm')
Weld.C0 = ClonedRA.Main.Cframe:inverse() * char:WaitForChild('Right Arm').CFrame
Weld.Parent = char:WaitForChild('Right Arm')


--// Right Leg
local ClonedRL = RightArm:Clone()
ClonedRL.Parent = char

ClonedRL.Main.CFrame = char:WaitFirChild('Right Leg')
local Weld = Instance.new('ManualWeld')
Weld.Part0 = ClonedRL.Main
Weld.Part1 = char:WaitForChild('Right Leg')
Weld.C0 = ClonedRL.Main.Cframe:inverse() * char:WaitForChild('Right Leg').CFrame
Weld.Parent = char:WaitForChild('Right Leg')


--// Torso
local ClonedT = Torso:Clone()
ClonedT.Parent = char

ClonedT.Main.CFrame = char:WaitFirChild('Torso')
Weld.Part0 = ClonedT.Main
Weld.Part1 = char:WaitForChild('Torso')
Weld.C0 = ClonedT.Main.Cframe:inverse() * char:WaitForChild('Torso').CFrame
Weld.Parent = char:WaitForChild('Torso')
end
end)
Don't work :'( HELP! PLS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Ответить
@beautyinvoice
@beautyinvoice - 14.04.2020 14:53

It says that at script 9 something 'CharacterAdded' is something like not working

Ответить
@Kaqtis
@Kaqtis - 01.04.2020 20:41

Welded 0 parts
wth

Ответить
@clauddora7810
@clauddora7810 - 31.03.2020 23:50

ily

Ответить
@kelseygordon8606
@kelseygordon8606 - 22.03.2020 22:18

Doesn't work.

Ответить
@iangonzalez5575
@iangonzalez5575 - 16.03.2020 03:12

I can't find the weld i need what do i do?

Ответить
@er0d3clancracked80
@er0d3clancracked80 - 07.02.2020 03:46

you should of put it in the desc.

Ответить
@AzureRoseMarshal
@AzureRoseMarshal - 03.02.2020 03:08

Why do u sound black but the profile is white

Ответить
@adarabathyahu7085
@adarabathyahu7085 - 15.01.2020 20:50

I am in "Baseplate"

Ответить
@adarabathyahu7085
@adarabathyahu7085 - 15.01.2020 20:44

Can you make a basic starter video on a morph plz

Ответить
@mrkitk4t825
@mrkitk4t825 - 05.01.2020 06:19

I have copied everything on the script perfectly and it STILL isn’t working


It’s very annoying how it’s not working

Ответить
@woshi381
@woshi381 - 22.12.2019 19:13

Would you like me to give you credit for this in my game's description?

Ответить
@pastel8686
@pastel8686 - 21.12.2019 22:38

Do you have a tutorial for selecting several of these custom characters?

Ответить
@raik1766
@raik1766 - 21.12.2019 19:51

yoyoyoyo 😂🤣

Ответить
@Bsmalsk1
@Bsmalsk1 - 09.12.2019 21:42

I own dragon Ball ultimate I script for 3 years I love creating games👍

Ответить
@青-t3x
@青-t3x - 24.11.2019 15:21

yoyoyoyoyoyoyo

Ответить
@neond00m
@neond00m - 08.11.2019 03:26

please tell me how to use :ReplaceBodyPartR15()

Ответить
@pyroarq2496
@pyroarq2496 - 17.10.2019 16:25

ServerScriptService.Script:1: '=' expected near 'rp'

Ответить
@CadaverKuma
@CadaverKuma - 12.10.2019 07:16

U Take Like A Helicopter

Ответить
@killershrimp3045
@killershrimp3045 - 06.10.2019 00:02

its not cringe...







I do it too

Ответить
@Chirchy
@Chirchy - 28.09.2019 22:45

CFrame is not a valid member of Model

Ответить
@goecww9349
@goecww9349 - 11.09.2019 22:37

well
u know that u cut just do a character and name it "StarterCharacter" do one of them and put on "StarterPlayer"
and done!

Ответить
@cosmopoptart8359
@cosmopoptart8359 - 11.09.2019 05:07

You can just use a for i, v in pairs(char:GetChildren())
if v:IsA("Part") then
v.Transparency = 1
end

end

Ответить
@faerymel
@faerymel - 09.09.2019 18:21

I want to add an accessory by default to every player. How can I manage to do that?

Ответить
@berpo5578
@berpo5578 - 03.09.2019 18:55

Its funny seeing teach you something you know

Ответить
@westv2320
@westv2320 - 02.09.2019 21:23

cool

Ответить
@Nethergal
@Nethergal - 02.09.2019 16:36

Omggg thank you so much ive been searching for a tutorial for 5 DAYS!!! I finally got it to work thank you so much

Ответить
@turnrp
@turnrp - 25.08.2019 04:07

I need help the arm keeps on falling when i hit the ground

Ответить
@blizzardwolf1911
@blizzardwolf1911 - 22.08.2019 00:42

Thank You so much for this! Been searching for hours!
also if anyone is having trouble making this code work, you have to set the game settings > Avatar to Lock on R6 inside the studio. Hope that helps ;)

Ответить