#Path
8 messages · Page 1 of 1 (latest)
local SpecificPart = --Your Part You Need
local UI = --UI Name and path
SpecificPart.Touched:Connect(function()
UI.Visible = true
end)
please google it.
If you don't know Proper English or never been on a computer in your whole life - path is like a track of the destination of where a proper file is located.
Windows has a file path called
C:\Users\PC; its common and you can see it from File Explorer, this is called a File Path
In Roblox Lua this is oftenly deemed to be really easy and you can access it wherever you want
It's called the Game path or calling something from the game.
Example:
game.Workspace
game.StarterGui
workspace
game
They said to call the UI; from a service you needed. Mostly UIs are Located in StarterGUIs so it should be there.
local UI = game.StarterGui.ScreenGui.Frame
Oh, thanks!