Roblox Piggy AlvinBlox Skin Question

Hello, Im Recently Working On A Piggy Game Made Whit The Popular Youtuber: “AlvinBlox’s” Kit, Theres Actually A Problem Whit The Shop GUI The Player Needs To Have A Skin Of 0 Coins And Also A Trap For Starting The Game Correctly, If People Doesn’t Buy One The Game Can’t Start ¿Somebody Know’s How To Make The Skin And Trap I Want Be Selected By Default?

2 Likes

Watch Alvinblox’s video. He goes over that stuff: Here it is

1 Like

Actually, He Doesn’t Mention Any Of What I Asked On There

1 Like

You could make some sort of tutorial in which it’s required to get the skin and trap. Also does the game not start, or does the game not start for the player(s) that does not have the skin and trap?

1 Like

The Bug Happends On The Map Vote Section, If The Selected Player As Piggy Doesn’t Have A Skin Or A Trap Selected The Map Doesn’t Start And They Get Stuck In The Lobby

2 Likes

I can assure you he goes over it. Instead try this:

local character
if player.EquippedSkin.Value ~= "" then
character = game.ReplicatedStorage.Skins:FindFirstChild(player.EquippedSkin.Value):Clone()
else
character = game.ReplicatedStorage.Skins.SkinName:Clone()
end

Having watched this tutorial myself, you should put this in the ‘DressPiggy’ function in round module script.

3 Likes