Code
01 | game.Players.PlayerAdded:connect( function (p) |
02 | p.Chatted:connect( function (msg) |
03 | msg = msg:lower() |
04 | if (msg = = "ssj" ) then |
05 | if (p.Character ~ = nil ) then |
06 | game.Players.LocalPlayer.Character.gokuhair:Destroy() |
07 | game.ServerStorage.ssjgoku:Clone().Parent = game.Players.LocalPlayer.Character |
08 | end |
09 | end |
10 | end ) |
11 | end ) |
game.Players.LocalPlayer.Chracter.gokuhair:Destroy() Works fine but game.ServerStorage.ssjgoku:Clone().Parent = game.Players.LocalPlayer.Chracter doesn't work?
Am I doing something wrong here? If so tell me what I'm doing wrong.
Item tree https://gyazo.com/f4aae72a66fdadcde486abf160fb32bf
You are referencing the hair parent that is the ServerStorege, remove the Parent.
01 | local playerLocal = game:GetService( "Players" ).LocalPlayer |
02 | local character = playerLocal.Character or playerLocal.CharacterAdded:Wait() |
03 |
04 | if not character or character.Parent = = nil then |
05 | character = playerLocal.CharacterAdded:wait() |
06 | end |
07 | game.Players.LocalPlayer.Character.gokuhair:Destroy() |
08 | local clone = game.ServerStorage.ssjgoku:Clone() |
09 | clone.Parent = character |
10 | clone:MakeJoints() |
11 | clone.Archivable = true |