01 | local target = script.Parent.Parent.Target.Text |
02 | local rank = script.Parent.Parent.Rank.Text |
03 | local change = script.Parent |
04 | local Players = game:GetService( "Players" ) |
05 | change.MouseButton 1 Click:Connect( function () |
06 | print (target) |
07 | local Target = game.Workspace:WaitForChild(target 123 ) |
08 | if Target then |
09 | print (Target.Name) |
10 | Target.Head.title.rank.Text = rank |
11 | end |
12 | end ) |
the print statement in line 6 is always printing target for no reason what could be the cause?
okay so you should put the target variable inside of the function because target is going t be the text as soon as the script runs
01 | local change = script.Parent |
02 | local Players = game:GetService( "Players" ) |
03 | change.MouseButton 1 Click:Connect( function () |
04 | local target = script.Parent.Parent.Target.Text |
05 | local rank = script.Parent.Parent.Rank.Text |
06 | print (target) |
07 | local Target = game.Workspace:WaitForChild( "target123" ) |
08 | if Target then |
09 | print (Target.Name) |
10 | Target.Head.title.rank.Text = rank |
11 | end |
12 | end ) |