Answered by
4 years ago Edited 4 years ago
Don't try to access Server Storage via LocalScript as it will not work. Bcz Server Storage is accessable by server only.
This is not going to be a simple thing..
First, Local script in TextButton.
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | game.ReplicatedStorage.YOUR_REMOTE_EVENT_NAME:FireServer() |
Then, the Server script in ServerScriptService.
01 | local function applyBodyColors(player, item, RigType) |
02 | local char = player.Character |
06 | local function applyBodyPart(player, item, RigType) |
07 | if RigType = = "R15" then |
08 | local replace = player.Character:FindFirstChild(item.Name) |
11 | item.Parent = player.Character |
15 | player.Character.Humanoid:BuildRigFromAttachments() |
19 | for _, oldPart in ipairs (player.Character:GetChildren()) do |
20 | if oldPart.ClassName = = "CharacterMesh" then |
21 | if oldPart.Name = = item.BodyPart.Name then |
26 | item.Name = item.BodyPart.Name |
27 | item.Parent = player.Character |
31 | local function AddItemToCharacter(player, item, rigType) |
32 | local Type = item.ClassName |
34 | if Type = = "Accessory" or Type = = "Shirt" or Type = = "Pants" or Type = = "Hats" then |
35 | item.Parent = player.Character |
36 | elseif Type = = "Tool" then |
37 | item.Parent = player.Backpack |
39 | elseif item.Name = = "Head" then |
40 | player.Character.Head.Mesh:Destroy() |
41 | item.Mesh.Parent = player.Character.Head |
42 | player.Character.Head.face:Destroy() |
43 | item.face.Parent = player.Character.Head |
44 | player.Character.Head.Color = item.Color |
46 | elseif Type = = "MeshPart" then |
47 | applyBodyPart(player, item, rigType) |
49 | elseif Type = = "BodyColors" then |
50 | applyBodyColors(player, item, rigType) |
54 | local function loadCharacter(player) |
55 | local Character = player.Character or player.CharacterAdded:Wait() |
56 | local RigType = Character.Humanoid.RigType = = Enum.HumanoidRigType.R 15 and "R15" or "R6" |
58 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
59 | local NewCharacter = ReplicatedStorage:WaitForChild( "Character" ) |
62 | if player:HasAppearanceLoaded() = = false then |
63 | repeat until player:HasAppearanceLoaded() = = true |
66 | player:ClearCharacterAppearance() |
68 | local EquipCharacter = NewCharacter:Clone() |
69 | for _, item in pairs (EquipCharacter:GetChildren()) do |
70 | AddItemToCharacter(player, item, RigType) |
75 | game.ReplicatedStorage.YOUR_REMOTE_EVENT_NAME.OnServerEvent:Connect(loadCharacter) |
It's too long I know and just don't copy/paste. Try to understand the script first.
Make sure to add Remote Event in ReplicatedStorage and rename it to that you will be using in the script.
Also, add the character u want to give the player in ReplicatedStorage.
Lemme know if it helps! Please do give an Upvote if it helped you bcz the script took really long time to write.