Why Isn't notification not sending a message?
So I have gotten Into a problem where I am trying to have a notification pop up when It touched a part however the problem Is that It doesn't show let me break It down:
This Is the part: (Note: The part Is Inside of a model)
1 | local part = script.Parent |
3 | local function findBot() |
4 | game.StarterGui.findBot.Disabled = false |
6 | game.StarterGui.findBot.Disabled = true |
9 | part.Touched:Connect(findBot) |
This Is the starterGUI local script:
1 | local part = script.Parent |
3 | local function findBot() |
4 | game.StarterGui.findBot.Disabled = false |
6 | game.StarterGui.findBot.Disabled = true |
9 | part.Touched:Connect(findBot) |
Hopefully this Is enough Information to get you started on nerfing It, thank you!