Im trying to make a custom console but my problem is when the player clicked the memory button it will show the user’s memory. but what happen is, it didn’t create any action??
my script:
local function ViewPlayerLogs()
print("To logs")
script.Parent.ClientLogs.Visible = true
script.Parent.MemoryLogs.Visible = false
end
local function ViewPlayerMemory()
print("To memory")
script.Parent.ClientLogs.Visible = false
script.Parent.MemoryLogs.Visible = true
end
script.Parent.Topbar.MemoryButton.MouseButton1Click:Connect(ViewPlayerMemory)
script.Parent.Topbar.LogsButton.MouseButton1Click:Connect(ViewPlayerLogs)
I put print there because to make sure if the mousebutton1click/ local function is working. but it didn’t print any. Additional