I need some help, when I activate the tool it is not visible, how can I solve it?
localscript 1:
-- Referencia al ImageButton en el juego
local imageButton = script.Parent:WaitForChild("openGui")
-- Referencia a la GUI en ReplicatedStorage
local replicatedStorage = game:GetService("ReplicatedStorage")
local myGui = replicatedStorage:WaitForChild("GUITAR | ARTIST CARE"):Clone()
-- Variable para rastrear el estado de la GUI
local isGuiVisible = false
-- Función para abrir o cerrar la GUI
local function toggleGui()
if isGuiVisible then
-- Cerrar la GUI
myGui.Parent = nil
else
-- Abrir la GUI
myGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
end
-- Cambiar el estado
isGuiVisible = not isGuiVisible
end
-- Conectar la función al evento MouseButton1Click del ImageButton
imageButton.MouseButton1Click:Connect(toggleGui)
localscript 2:
local chooseElectricGuitar = script.Parent.Frame:WaitForChild("On/Off")
local isOn = false
local debounce = false
-- Reference to the ReplicatedStorage
local replicatedStorage = game:GetService("ReplicatedStorage")
chooseElectricGuitar.MouseButton1Click:Connect(function()
if not debounce then
debounce = true
-- Toggle the state and perform functionality
if isOn then
-- Perform actions when turning off
print("Turning off...")
-- You can add additional actions when turning off here
else
-- Perform actions when turning on
print("Turning on...")
-- Retrieve the tool from ReplicatedStorage
local electricGuitarTool = replicatedStorage:WaitForChild("ElectricGuitarTool2"):Clone()
-- Equip the tool to the player's character when turning on
electricGuitarTool.Parent = game.Players.LocalPlayer.Backpack
end
-- Change the text based on the current state
chooseElectricGuitar.Text = isOn and "Off" or "On"
isOn = not isOn
wait(0.5) -- You can adjust this value based on your needs to prevent debounce
debounce = false
end
end)