Skip to content

Instantly share code, notes, and snippets.

@casualdegenerate
Created February 13, 2022 12:14
Show Gist options
  • Save casualdegenerate/653bbc1b2d89ce0396c1506c62bec3ef to your computer and use it in GitHub Desktop.
Save casualdegenerate/653bbc1b2d89ce0396c1506c62bec3ef to your computer and use it in GitHub Desktop.
Exploit#0 for Project-JoJo on roblox.com
-- // slua (https://x.synapse.to)
print('slua https://x.syanpse.to', 'Project JoJo Invisibility Exploit', script.Name)
loadfile('Player.lua')()
-- // copy paste function
local function patch(character)
local t = character:WaitForChild('Torso')
t:WaitForChild('metaldust'):Destroy() -- hehe ownership go :Destroy()
t:WaitForChild('wortheffect'):Destroy()
end
Player.CharacterAdded:Connect(function(chr)
wait(3) -- shut up i'm not lazy
patch(chr)
end)
patch(Player.Character)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment