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

Why is my script print statement always printing "target"?

Asked by 4 years ago
Edited 4 years ago
01local target = script.Parent.Parent.Target.Text
02local rank = script.Parent.Parent.Rank.Text
03local change = script.Parent
04local Players = game:GetService("Players")
05change.MouseButton1Click:Connect(function()
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
12end)

the print statement in line 6 is always printing target for no reason what could be the cause?

0
Maybe try not to put numbers in a variable name and also it’s probably something wrong where you locate the objects, also don’t save the text value to a variable try saving the label to a variable instead of the text value o it iamtryingtofindname 22 — 4y
0
it dosent work it i change the varible to target either marsdonh 36 — 4y
0
Well that means that it is something wrong elsewhere, because you are printing the text value of the object, which means that either there is something wrong in the text box, or you are locating the wrong object, ex. You a iamtryingtofindname 22 — 4y
0
In the target variable above, remove .Text and add it where your print is. print(target.Text) BestCreativeBoy 1395 — 4y

1 answer

Log in to vote
0
Answered by
raid6n 2196 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago

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

01local change = script.Parent
02local Players = game:GetService("Players")
03change.MouseButton1Click: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
12end)
Ad

Answer this question