This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local UserInputService = game:GetService("UserInputService") | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
local humanoid = character:WaitForChild("Humanoid") | |
local rootPart = character:WaitForChild("HumanoidRootPart") | |
-- Create GUI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Services | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local UserInputService = game:GetService("UserInputService") | |
-- Player and Character | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
local humanoid = character:WaitForChild("Humanoid") | |
local rootPart = character:WaitForChild("HumanoidRootPart") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Services | |
local Players = game:GetService("Players") | |
-- Player and Character | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
-- Function to reset character | |
local function resetCharacter() | |
character.Humanoid.Health = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- WallHop V2 by Scriptblox | |
-- Services | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local UserInputService = game:GetService("UserInputService") | |
-- Player and Character | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- WallHop V2 by Scriptblox | |
-- Services | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
-- Player and Character | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
local humanoid = character:WaitForChild("Humanoid") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- WallHop V2 by Scriptblox | |
-- Services | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local GuiService = game:GetService("GuiService") | |
-- Player and Character | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
local humanoid = character:WaitForChild("Humanoid") | |
local rootPart = character:WaitForChild("HumanoidRootPart") | |
local wallHopEnabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- WallHop Script by Scriptblox | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
local humanoid = character:WaitForChild("Humanoid") | |
local rootPart = character:WaitForChild("HumanoidRootPart") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- WallHop Script by Scriptblox | |
-- Services | |
local UserInputService = game:GetService("UserInputService") | |
local Players = game:GetService("Players") | |
-- Variables | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
local humanoid = character:WaitForChild("Humanoid") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Services | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
-- Player and Character | |
local player = Players.LocalPlayer | |
local character = player.Character or player.CharacterAdded:Wait() | |
local humanoid = character:WaitForChild("Humanoid") | |
local rootPart = character:WaitForChild("HumanoidRootPart") |
NewerOlder