Making Character Selection GUI

  1. What do you want to achieve? I want to make a character selection GUI where when you click a character it gives you a preview and then if you click again you become that character

  2. What is the issue? I am having trouble scripting it

  3. What solutions have you tried so far? I looked on the wiki, searched on dev forum, and found no working results from free models / youtube
    this is a local script i tried putting into a imagebutton

local Diego = game.ReplicatedStorage.Characters.StarterCharacter
local plr = game.Players.LocalPlayer

MouseButton1Click:connect(function()
   Diego:Clone()
   plr.Character = Diego
   Diego.Parent = workspace
end

Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.

2 Likes

Hi buddy :slight_smile:

My suggestion would be to maybe dig deeper into Lua and programming here on Roblox before you tackle this; as it seems you’re just starting out.

You could try checking out some of AlvinBlox’s videos on YouTube if you’re interested in learning, I’ve heard he’s pretty good: https://www.youtube.com/channel/UCp1R0TBvgM7gj0rwTYULmSA/playlists

I could also give you a technical answer to your question; but I’m not sure if it’d be very valuable information in this case.

Okay, can you give me a in depth description so when I come back from learning more I can tackle it the way you suggest.

Also, I watch TheDevKing’s tutorials https://www.youtube.com/playlist?list=PLhieaQmOk7nIfMZ1UmvKGPrwuwQVwAvFa

2 Likes