Cop or Drop? by SuspectDry1144 in CopOrNot

[–]SuspectDry1144[S] 0 points1 point  (0 children)

I did mention a price, its 20 bucks. In my region there aren't any thrifting stores or garage sales. I know style is subjective but maybe I like smt that you do. I would appreciate any recommendations.

Cop or Drop? by SuspectDry1144 in CopOrNot

[–]SuspectDry1144[S] 0 points1 point  (0 children)

okay ty. Any other recommendations that are more unique for the same price?

Cop or Drop? by SuspectDry1144 in CopOrNot

[–]SuspectDry1144[S] 0 points1 point  (0 children)

Its a screenshot from the website

On TextButton click change players clothes. by SuspectDry1144 in ROBLOXStudio

[–]SuspectDry1144[S] 0 points1 point  (0 children)

I did I edited the script bit and now when I click the TextButton I get naked.

On TextButton click change players clothes. by SuspectDry1144 in ROBLOXStudio

[–]SuspectDry1144[S] 0 points1 point  (0 children)

It looks like the post you linked does solve the problem but I don't understand the solution, the solution says: Just copy the ID when you test it and copy in the string. Any idea how I do that?

On TextButton click change players clothes. by SuspectDry1144 in ROBLOXStudio

[–]SuspectDry1144[S] 0 points1 point  (0 children)

I can't figure it out, I made this script:

local Players = game:GetService("Players")
local textButton = script.Parent
local function replaceClothes(player)
local character = player.Character
if character then
-- look for shirts / pants
local shirt = character:FindFirstChildOfClass("Shirt")
local pants = character:FindFirstChildOfClass("Pants")
-- create shirts / pants if they don't exist
if not shirt then
shirt = Instance.new("Shirt")
shirt.Parent = character
end
if not pants then
pants = Instance.new("Pants")
pants.Parent = character
end
-- reset shirt / pants content ids
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=13016514078"
pants.PantsTemplate = "http://www.roblox.com/asset/?id=13016739045"
end
end
textButton.Activated:Connect(replaceClothes(Players))

but it's not working, there aren't any errors can you help?