#Path

8 messages · Page 1 of 1 (latest)

bronze inlet
#

I was just wondering what a path is? I was told to use it in a script for a UI pop-up.

#

local SpecificPart = --Your Part You Need
local UI = --UI Name and path

SpecificPart.Touched:Connect(function()
UI.Visible = true
end)

primal harness
#

please google it.

bronze inlet
#

I did

#

But I didn't understand it

loud imp
# bronze inlet local SpecificPart = --Your Part You Need local UI = --UI Name and path Specifi...

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
loud imp