of     1   

LegomasterNiko
#226108118Sunday, October 08, 2017 2:04 AM GMT

So I asked about this the first time, But I am not sure on where I should add it. I have a part, when the user touch's the part on want it to print on the text label which user touched the part. script.Parent.Touched:connect(function(Touch) script.Parent.Transparency = 0.8 wait(0.4) script.Parent.CanCollide = false wait(0.4) game.Workspace.CRFT_Factory1.ClaimTycoon.MainPart.SurfaceGui.TextLabel.Text = "LegomasterNiko's Factory" wait(0.4) end) --Touch.Parent.Name--I don't know where I should put this. Thanks for reading.
LegomasterNiko
#226108292Sunday, October 08, 2017 2:08 AM GMT

pump
savaughn00
#226108403Sunday, October 08, 2017 2:11 AM GMT

Something I've never really Tried. Try Doing this Local Player = game.Players.LocalPlayer game.Workspace.CRFT_Factory1.ClaimTycoon.MainPart.SurfaceGui.TextLabel.Text = Player .. "'s Factory"
Horrible_Pun
#226108461Sunday, October 08, 2017 2:12 AM GMT

script.Parent.Touched:connect(function(Touch) script.Parent.Transparency = 0.8 wait(0.4) script.Parent.CanCollide = false wait(0.4) game.Workspace.CRFT_Factory1.ClaimTycoon.MainPart.SurfaceGui.TextLabel.Text = Touch.Name.."'s Tycoon" wait(0.4) end) idk maybe something like that
LegomasterNiko
#226109113Sunday, October 08, 2017 2:31 AM GMT

Thanks! Horrible_Pun That worked good. Also thank you! savaughn00.
Horrible_Pun
#226109160Sunday, October 08, 2017 2:32 AM GMT

no problemo (side note thats the first time ive genuinely helped someone lmao)

    of     1