Forum > Scripts >

i need a wallhack script

Posts: 15

Threads: 11

Joined: Jun, 2018

Reputation: 0

Posted

is know someone wallhack script? I mean i need a script for i can see the player inside the walls
  • 0

Posts: 401

Threads: 27

Joined: Jan, 2018

Reputation: 14

Replied

Are you talking about removing the wall entirely from your POV (filtering enabled) Â or just a regular ESP that either fills the player with a color or just puts a box around them?
  • 0

Posts: 15

Threads: 11

Joined: Jun, 2018

Reputation: 0

Replied

just a regular ESP that either fills the player with a color
  • 0

Posts: 11

Threads: 5

Joined: May, 2018

Reputation: 0

Replied

-- Press x to toggle on/off.

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local mouse = Players.LocalPlayer:GetMouse()
local a = false

mouse.KeyDown:Connect(function(key)
if key == "x" then
if a == false then
pcall(function() game.Workspace.Map.Parent = ReplicatedStorage end)
if game.Workspace:FindFirstChild('#elta') ~= nil then
game.Workspace:WaitForChild('#elta'):Destroy()
end

local abc = Instance.new('Part', workspace)
abc.Anchored = true
abc.Name = "#elta"
abc.Size = Vector3.new(2048, 1, 2048)
abc.CFrame = CFrame.new(Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y -10, Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z)

a = true
elseif a == true then
pcall(function() ReplicatedStorage.Map.Parent = game.Workspace end)
if game.Workspace:FindFirstChild('#elta') ~= nil then
game.Workspace:WaitForChild('#elta'):Destroy()
end
a = false
end
end
end)
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )