If there’s a bypass for a block that just does “when humanoid touching set health to 0” or something like that, how would I bypass it? Is there a script that can do it?
either disable CanTouch on your character or on the bricks
i dont know where the bricks are located so heres script for character
local Players = game:GetService('Players')
local LocalPlayer = Players.LocalPlayer
game:GetService('RunService').Heartbeat:Connect(function()
local char = LocalPlayer.Character
if not char then
return
end
for _,v in char:GetChildren() do
if v:IsA('BasePart') then
v.CanTouch = false
end
end
end)
open up dex, enable click to select, select the part you dont want you to kill, delete it. if they are in the same folder or have the same script under them you can ask chatgpt to delete them and replicate the same exact color, scale, position and texture just to be safe if they kill you another way
Check out our guides!
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
Try using something like:
local a = killbrick
a:Destroy()
Honestly it should work and ain't that hard...
That should actually work as long as he knows where the killbrick is in the directory of parts.
Hey! Due to the massive number of posts asking for exploit links, we are letting you know we have an exploit list. You can check it on voxlis NETWORK!
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
either disable CanTouch on your character or on the bricks
i dont know where the bricks are located so heres script for character
Js modify the local script
open up dex, enable click to select, select the part you dont want you to kill, delete it. if they are in the same folder or have the same script under them you can ask chatgpt to delete them and replicate the same exact color, scale, position and texture just to be safe if they kill you another way