I've re-worded this script in a million different ways but I can't figure out what's wrong. I have a SHirt on while testing this in a server.
1 | game.Players.PlayerAdded:connect( function (player) |
2 | player:WaitForDataReady() |
3 | player.Character:FindFirstChild( "Shirt" ) |
4 | if found then found.ShirtTemplate = ( "http://www.roblox.com/asset/?id=137904320" ) |
5 | end |
6 | end ) |
I'm completely stuck on what to do. This part of the script gives no output.
You don't have anything in the script that suggests 'found' is a thing. Try this:
1 | local found = player.Character:FindFirstChild( "Shirt" ) |
Hmm, try this;
01 | if game:FindService( "Players" ) then |
02 | print ( "Script Loaded" ) |
03 | game.Players.PlayerAdded:connect( function (plr) |
04 | plr.CharacterAdded:connect( function (char) |
05 | wait( 2 ) |
06 | for i,v in pairs (char:GetChildren()) do |
07 | if v:IsA( "Shirt" ) then |
08 | v.ShirtTemplate = "http://www.roblox.com/asset/?id=137904319" |
09 | end |
10 | end |
11 | end ) |
12 | end ) |
13 | end |
Hope this helped!