Posted
Theres this item thats placed on the workspace. There are over a thousand objects so workspace:GetChildren() isnt very helpful /:
I can see the object and even interact with it (touching it collects it and makes it disapear)
I tried using simple spy but i couldnt find the name through it.
I also tried searching by names that could match but got nothing /:
Is there a way for me to find the name of an object in the workspace?
It will really help me a lot :)
Thanks in advance!
Replied
Give me a screenshot of the workspace with the part selected
Cancel
Post
GitHub: https://github.com/sound-infinity
Discord: SoundInfinity#2135
Replied
Exacly, i dont have the workshop.
I cant select the part.
Cancel
Post
Replied
Instances have property called "Name", If you can't select it then maybe try using the index to select the "Object"
Cancel
Post
Replied
You dont get my problem.
I cant select or do anything with the object.
Im looking and it in game, NOT in editor.
I have no idea how i can find the instance or name of the object. Or even index. thats what im asking, how can i find it :)
Cancel
Post
Replied
assuming you have a script executer, synapes or krnl etc .you can use a script called dark dex that will alow you to veiw the games index or you could even use the infiniteyield script im pretty sure it also has a dex exlporer. when the tab pops up on the side , go to the settings icon and make sure "Click part to select" is switched to 'ON" then click the icon with 3 lines (explorer icon) now ... back to the game ,you want to click on the part you wish to interact with and hey presto! you might have to scroll down but that part will be highlighted in the explorer list.
where you go from here depends on how you wish to intereact with the object/part .
Cancel
Post
Added
if its a coin/gem/collectable you probably want this
local playerHead = game.Players.LocalPlayer.Character.Head -- the players head
for i, v in pairs(game:GetService("Workspace").Gem:GetDescendants()) do -- replace the underlined bit with your own partpath
if v.Name == "TouchInterest" and v.Parent then
firetouchinterest(playerHead, v.Parent, 0)
wait()
firetouchinterest(playerHead, v.Parent, 1)
end
end
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post