Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

failing on xeno #14

Open
Reycko opened this issue Nov 23, 2024 · 12 comments
Open

failing on xeno #14

Reycko opened this issue Nov 23, 2024 · 12 comments

Comments

@Reycko
Copy link

Reycko commented Nov 23, 2024

(on esp) Line 78: Invalid argument #1 (Instance expected, got userdata)

This might be xeno being fucky
Issue is from the ESP, local _GetService = __index(game, "GetService")

@Reycko
Copy link
Author

Reycko commented Nov 23, 2024

This is because game is userdata and not an Instance in Xeno for some reason

print(typeof(game))
-- > userdata

@Reycko
Copy link
Author

Reycko commented Nov 23, 2024

Yeah so the metatable thing just isn't working at all on xeno

@Reycko
Copy link
Author

Reycko commented Nov 23, 2024

Line 1774 is also failing after (badly) working around that

@Reycko
Copy link
Author

Reycko commented Nov 23, 2024

Looks like an easy fix
local Connect, Disconnect = __index(game, "DescendantAdded").Connect, __index(game, "DescendantAdded").Disconnect

@Reycko
Copy link
Author

Reycko commented Nov 23, 2024

Nvm lmao
Disconnect is not a valid member of RBXScriptSignal

@Exunys
Copy link
Owner

Exunys commented Dec 8, 2024

Nvm lmao

Disconnect is not a valid member of RBXScriptSignal

local Disconnect = function(Connection)
   Connection:Disconnect()
end

should work, xeno modifies corescripts' bytecode as an execution method which is really bad and detected so yeah the metamethods or something, in theory interfere with the roblox game's environment (as if you were using for example getrawmetatable(getrenv().game).__index or something like that...)

@ZaxissNoMalware
Copy link

So.. can you fix the 78 line?
local _GetService = __index(game, "GetService")

@Exunys
Copy link
Owner

Exunys commented Dec 13, 2024

What's the issue with it? Can you show me error message context please?

@Reycko
Copy link
Author

Reycko commented Dec 15, 2024

What's the issue with it? Can you show me error message context please?

It's the original issue mentioned, some shit with xeno just having intentionally made game be userdata and as a result you can't use game in it's metatable (which is __index in https://github.com/Exunys/Exunys-ESP/blob/main/src/ESP.lua#L78)

@Exunys
Copy link
Owner

Exunys commented Dec 17, 2024

What's the error message though?

@Reycko
Copy link
Author

Reycko commented Dec 17, 2024

What's the error message though?

Line 78: Invalid argument #1 (Instance expected, got userdata)

@CSXES44AC
Copy link

no xeno is shit do not use xeno it dosent even work anymore

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants