Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would i make the players character change on textbutton click?

Asked by 4 years ago

How would I make the players character change on textbutton click? I mean I have an idea but it doesnt work. I thought it would be somethin like

1script.Parent.MouseButton1Click:Connect(function()
2    local player = game.Players.LocalPlayer
3    local char = game:WaitForChild('ServerStorage').CustomCharacter
4    player.Character = char

how would I do it?

3 answers

Log in to vote
1
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.

1script.Parent.MouseButton1Click:Connect(function()
2    game.ReplicatedStorage.YOUR_REMOTE_EVENT_NAME:FireServer()
3end

Then, the Server script in ServerScriptService.

01local function applyBodyColors(player, item, RigType)
02    local char = player.Character
03    item.Parent = char --Here, item is Body Color of the character
04end
05 
06local function applyBodyPart(player, item, RigType)
07    if RigType == "R15" then
08        local replace = player.Character:FindFirstChild(item.Name)
09 
10        if replace then
11            item.Parent = player.Character
12            replace:Destroy()
13        end
14 
15        player.Character.Humanoid:BuildRigFromAttachments()
View all 75 lines...

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.

0
imma give you an update wether it worked or not cause gosh darn thats a long script Galaxybombboy 134 — 4y
0
UPVOTE* Galaxybombboy 134 — 4y
Ad
Log in to vote
0
Answered by
iOwn_You 543 Moderation Voter
4 years ago

You need to (locally) clone CustomCharacter to game.StarterPlayer And then name it “StarterCharacter” and do Player:LoadCharacter()

0
but won't that make STARTER character? Galaxybombboy 134 — 4y
1
StarterCharacter is the char the player spawns with. If you want to revert it when they die you can use Humanoid.Died to do StarterCharacter:Destroy() iOwn_You 543 — 4y
0
Youre also using Player:LoadCharacter() to load the new starter character. iOwn_You 543 — 4y
1
Did this work? ISReFleX 31 — 4y
Log in to vote
0
Answered by 4 years ago

COMBO of 2 Replies.

script 1: (localscript inside button)

1script.Parent.MouseButton1Click:Connect(function()
2    game.ReplicatedStorage.changecharacter:FireServer()
3end)

script2(script inside serverscriptservice)

1game.ReplicatedStorage.changecharacter.OnServerEvent:Connect(function(player)
2        local ServerStorage = game:GetService("ServerStorage")
3        ServerStorage.StarterCharacter:Clone().Parent = game.StarterPlayer
4        player:LoadCharacter()
5end)

Works! Thanks iOwn_You and BestCreativeBoy

Answer this question