More type fixes and need to fix CoreGuis PlayerAdded

This commit is contained in:
2024-03-09 14:06:05 -05:00
parent 04fc707bec
commit 3e28667b13
4 changed files with 21 additions and 18 deletions

View File

@@ -102,14 +102,14 @@ end
function Flashlight:On()
Flashlight.Enabled = true
self.ToggleSound:Play();
self.ToggleSound:Play()
self.SpotLight.Enabled = Flashlight.Enabled
end
function Flashlight:Off()
Flashlight.Enabled = false
self.ToggleSound:Play();
self.ToggleSound:Play()
self.SpotLight.Enabled = Flashlight.Enabled
end