Mn = game.Players.LocalPlayer Tex1 = script.Parent.Texts.Text1 Tex2 = script.Parent.Texts.Text2 Tex3 = script.Parent.Texts.Text3 Tex4 = script.Parent.Texts.Text4 Pla = Mn.Character.Name while true do wait(0.1) if game.Players.LocalPlayer.Character.Name == "jack99921" then Tex1.Value = "Hello Jack" Tex2.Value = "Nice game you got here eh?" Tex3.Value = "Remember to finish it" Tex4.Value = "Have fun" else Tex1.Value = "Hello, "..Pla Tex2.Value = "Welcome to my game" Tex3.Value = "Beta tester eh?" Tex4.Value = "Hop right in" end end
Anyone help?
Are you using LocalScript? If you aren't try to do it with LocalScript.
Mn = game.Players.LocalPlayer Tex1 = script.Parent.Texts.Text1 Tex2 = script.Parent.Texts.Text2 Tex3 = script.Parent.Texts.Text3 Tex4 = script.Parent.Texts.Text4 Pla = Mn.Character.Name while true do wait(0.1) if game.Players.LocalPlayer.Character.Name = "jack99921" then --Use this Tex1.Value = "Hello Jack" Tex2.Value = "Nice game you got here eh?" Tex3.Value = "Remember to finish it" Tex4.Value = "Have fun" else Tex1.Value = "Hello, "..Pla Tex2.Value = "Welcome to my game" Tex3.Value = "Beta tester eh?" Tex4.Value = "Hop right in" end end