I wanna make a chat gui When I try to make a (Owner) at front for me It double posts so I am trying to make it cancel the first one for my player Then make the one with (Owner) start
I tried using ifplayername = player.Name == "fireboltofdeath" then I put ifplayername = false But when I added if ifplayername == true then The rest is script it cancelled the whole script.
im not sure what your trying to say but if you want a script to only run for one player then you could do something like this
1 | player = game.Players.LocalPlayer |
2 | if player.Name ~ = "fireboltofdeath" then |
3 | script:Destroy() |
4 | end |
5 | -- rest of code here |