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

How do you change a players clothing if they have a gamepass?

Asked by 5 years ago
Edited 5 years ago

So I tried this and it wont work what do I do to fix it?

01local MarketplaceService = game:GetService("MarketplaceService")
02 
03local Players = game:GetService("Players")
04 
05local gamePassID = 0
06 
07function onPlayerSpawned(player)
08 
09    local hasPass = false
10     
11    local success, message = pcall(function()
12        hasPass = MarketplaceService:UserOwnsGamePassAsync(player.userId, gamePassID)
13    end)      
14 
15    if not success then
16        warn("Error while checking if player has pass: " .. tostring(message))
17        return
18    end
19   
20    if hasPass == true then
21 
22      local pant = Parent:GetChildren()
23      for i=1,#pant do
24      if (pant[i].className == "Pants") then
25        pant[i].PantsTemplate = "http://www.roblox.com/asset/?id=0"
26        end
27    end
28    local shirt = Parent:GetChildren()
29    for i=1,#shirt do
30    if (shirt[i].className == "Shirt") then
31        shirt[i].ShirtTemplate = "http://www.roblox.com/asset/?id=0"
32        end
33    end
34 
35 end
36end
37 
38game.Players.PlayerAdded:connect(function(player)
39 player.CharacterAdded:connect(function()
40   onPlayerSpawned(player)
41 end)
42end)
43 
44Players.PlayerSpawned:Connect(onPlayerSpawned)

P.S you can use the fixed version its not just for me its for everyone!

0
Have you change the Game Pass id and the clothing asset id? Or is this just a example code? RainbowBeastYT 85 — 5y
0
Example. vincentthecat1 199 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago

The gamepass will not work if the user has no shirt or pants on (though people usually do). Instead of replacing the ID, you can wait for the clothes in the player, destroy them, and clone the gamepass clothes from (ServerStorage or Lighting or the Script) into the player. Basically, it destroys the player's old clothes and inputs the new clothes instead of changing the ID. Changing the ID does work as well, although if people have no clothes or some clothes, it won't work and you have to add more elements into your script to detect them.

Ad

Answer this question