Why is this hint script not working?
Hello, My friends...
Today im asking you why This Hint Script I have made doesn't work, I have classified everything into a proper group(s) etc...
And it isn't showing a Hint at all
Any Ideas why?
01 | local h = Instance.new( "Hint" ) |
02 | local sftg = game.ServerStorage.sft and game.Workspace.sft |
03 | local gftg = game.ServerStorage.gft and game.Workspace.gft |
04 | local obbyg = game.ServerStorage.obby and game.Workspace.obby |
07 | if sftg.Parent ~ = game.Workspace and gftg.Parent ~ = game.Workspace and obbyg.Parent ~ = game.Workspace then |
08 | h.Parent = game.Workspace |
09 | h.Text = "Currently There is no map running..." |
11 | if sftg.Parent = = game.Workspace and gftg.Parent ~ = game.Workspace and obbyg.Parent ~ = game.Workspace then |
12 | h.Parent = game.Workspace |
13 | h.Text = "Currently SwordFight is Running..." |
17 | if gftg.Parent = = game.Workspace and sftg.Parent ~ = game.Workspace and obbyg.Parent ~ = game.Workspace then |
18 | h.Parent = game.Workspace |
19 | h.Text = "Currently GunFight is Running..." |
22 | if obbyg.Parent = = game.Workspace and sftg.Parent ~ = game.Workspace and gftg.Parent ~ = game.Workspace then |
23 | h.Parent = game.Workspace |
24 | h.Text = "Currently Obby is Running..." |