local Library = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = Library.CreateLib("simple script", "Midnight")
local Tab = Window:NewTab("🏡home")
local Section = Tab:NewSection("main")
mainSection:NewButton("esp", "give you a world vision", function()
local Players = game:GetService("Players"):GetChildren()
local RunService = game:GetService("RunService")
local highlight = Instance.new("Highlight")
highlight.Name = "Highlight"
for i, v in pairs(Players) do
repeat wait() until v.Character
if not v.Character:FindFirstChild("HumanoidRootPart"):FindFirstChild("Highlight") then
local highlightClone = highlight:Clone()
highlightClone.Adornee = v.Character
highlightClone.Parent = v.Character:FindFirstChild("HumanoidRootPart")
highlightClone.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
highlightClone.Name = "Highlight"
end
end
game.Players.PlayerAdded:Connect(function(player)
repeat wait() until player.Character
if not player.Character:FindFirstChild("HumanoidRootPart"):FindFirstChild("Highlight") then
local highlightClone = highlight:Clone()
highlightClone.Adornee = player.Character
highlightClone.Parent = player.Character:FindFirstChild("HumanoidRootPart")
highlightClone.Name = "Highlight"
end
end)
game.Players.PlayerRemoving:Connect(function(playerRemoved)
playerRemoved.Character:FindFirstChild("HumanoidRootPart").Highlight:Destroy()
end)
RunService.Heartbeat:Connect(function()
for i, v in pairs(Players) do
repeat wait() until v.Character
if not v.Character:FindFirstChild("HumanoidRootPart"):FindFirstChild("Highlight") then
local highlightClone = highlight:Clone()
highlightClone.Adornee = v.Character
highlightClone.Parent = v.Character:FindFirstChild("HumanoidRootPart")
highlightClone.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
highlightClone.Name = "Highlight"
task.wait()
end
end
end)
end)
Section:NewToggle("super human", "makes you fast and jump high", function(state)
if state then
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
else
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
end
end)
local Tab = Window:NewTab("🎲misc")
local Section = Tab:NewSection("player")
Section:NewSlider("walkspeed", "run super fast", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
end)
To embed this project on your website, copy the following code and paste it into your website's HTML: