loadstring(game:HttpGet(("https://[Log in to view URL]")))()
MakeWindow({
Hub = {
Title = "speed-wave V1.3 | color or die",
Animation = "TEAM SPEED"
},
Key = {
KeySystem = false,
Title = "Key System",
Description = "",
KeyLink = "",
Keys = {"1234"},
Notifi = {
Notifications = true,
CorrectKey = "Running the Script...",
Incorrectkey = "The key is incorrect",
CopyKeyLink = "Copied to Clipboard"
}
}
})
MinimizeButton({
Image = "rbxassetid://18393252027",
Size = {50, 50},
Color = Color3.fromRGB(10, 10, 10),
Corner = true,
Stroke = false,
StrokeColor = Color3.fromRGB(255, 0, 0)
})
local Main = MakeTab({Name = "Home"})
local Image = AddImageLabel(Main, {
Name = "speed-wave",
Image = "rbxassetid://18393252027"
})
local Paragraph = AddParagraph(Main, {"game.Players.PlayerAdded:Connect(function(Player)
print(Player.Name)
end)", "bom dia meus manos"})
local Paragraph = AddParagraph(Main, {"نسخ قناة التليجرام", "bom dia meus manos"})
AddButton(Main, {
Name = "نسخ رابط",
Callback = function()
setclipboard('https://[Log in to view URL]')
end
})
local Main = MakeTab({Name = "الماب"})
local Paragraph = AddParagraph(Main, {"كشف الاعبين + مفتاح + الاصباغ + المنشار + العصاء + الوحش ", "bom dia meus manos"})
AddButton(Main, {
Name = "كشف كل شيء ",
Callback = function()
--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
local localPlayer = game.Players.LocalPlayer.Character.HumanoidRootPart
local function getDistance(position1, position2)
return (position1 - position2).Magnitude
end
for i, player in pairs(workspace.GameplayAssets.Items:GetDescendants()) do
if player.Name == "Root" and player:IsA("Part") then
if not player:FindFirstChild("EspBox") then
local esp = Instance.new("BoxHandleAdornment", player)
local BillboardGui = Instance.new("BillboardGui")
local TextLabel = Instance.new("TextLabel")
esp.Adornee = player
esp.ZIndex = 0
esp.Size = Vector3.new(1, 1, 1)
esp.Transparency = 0.65
esp.Color3 = Color3.fromRGB(255, 48, 48)
esp.AlwaysOnTop = true
esp.Name = "EspBox"
BillboardGui.Parent = player
BillboardGui.AlwaysOnTop = true
BillboardGui.LightInfluence = 1
BillboardGui.Size = UDim2.new(0, 40, 0, 40)
BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
BillboardGui.Name = "BillobardEsp"
TextLabel.Parent = BillboardGui
TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel.BackgroundTransparency = 1
TextLabel.Size = UDim2.new(1, 0, 1, 0)
TextLabel.Text = player.Parent.Name
TextLabel.TextStrokeTransparency = 0
TextLabel.TextWrapped = false
TextLabel.TextColor3 = Color3.new(1, 0, 0)
spawn(function()
while player.Parent do
local distance = getDistance(localPlayer.Position, player.Position)
TextLabel.Text = player.Parent.Name .. " (" .. math.floor(distance) .. ")"
wait()
end
end)
end
end
end
for i, player in pairs(workspace.GameplayParts.Doors.Normal.Paintable:GetDescendants()) do
if player.Name == "Core" and player:IsA("Part") then
if not player:FindFirstChild("EspBox") then
local esp = Instance.new("BoxHandleAdornment", player)
local BillboardGui = Instance.new("BillboardGui")
local TextLabel = Instance.new("TextLabel")
esp.Adornee = player
esp.ZIndex = 0
esp.Size = Vector3.new(1, 12, 12)
esp.Transparency = 0.65
esp.Color3 = player:FindFirstChild("SurfaceGui"):FindFirstChild("Color").TextColor3
esp.AlwaysOnTop = true
esp.Name = "EspBox"
BillboardGui.Parent = player
BillboardGui.AlwaysOnTop = true
BillboardGui.LightInfluence = 1
BillboardGui.Size = UDim2.new(0, 40, 0, 40)
BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
BillboardGui.Name = "BillobardEsp"
TextLabel.Parent = BillboardGui
TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel.BackgroundTransparency = 1
TextLabel.Size = UDim2.new(1, 0, 1, 0)
TextLabel.Text = player.Parent.Name
TextLabel.TextStrokeTransparency = 0
TextLabel.TextWrapped = false
TextLabel.TextColor3 = player:FindFirstChild("SurfaceGui"):FindFirstChild("Color").TextColor3
spawn(function()
while player.Parent do
local distance = getDistance(localPlayer.Position, player.Position)
TextLabel.Text = player.Parent.Name .. " (" .. math.floor(distance) .. ")"
wait()
end
end)
end
end
end
for i, player in pairs(workspace.GameplayAssets.Monsters:GetChildren()) do
if not player:FindFirstChild("EspBox") then
local esp = Instance.new("BoxHandleAdornment", player)
local BillboardGui = Instance.new("BillboardGui")
local TextLabel = Instance.new("TextLabel")
esp.Adornee = player
esp.ZIndex = 0
esp.Size = Vector3.new(5, 15, 2)
esp.Transparency = 0.65
esp.Color3 = Color3.fromRGB(0, 0, 0)
esp.AlwaysOnTop = true
esp.Name = "EspBox"
BillboardGui.Parent = player
BillboardGui.AlwaysOnTop = true
BillboardGui.LightInfluence = 1
BillboardGui.Size = UDim2.new(0, 40, 0, 40)
BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
BillboardGui.Name = "BillobardEsp"
TextLabel.Parent = BillboardGui
TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel.BackgroundTransparency = 1
TextLabel.Size = UDim2.new(1, 0, 1, 0)
TextLabel.Text = player.Name
TextLabel.TextStrokeTransparency = 0
TextLabel.TextWrapped = false
TextLabel.TextColor3 = Color3.new(1, 1, 1)
spawn(function()
while player.Parent do
local distance = getDistance(localPlayer.Position, player:FindFirstChild("HumanoidRootPart").Position)
TextLabel.Text = player.Name .. " (" .. math.floor(distance) .. ")"
wait()
end
end)
end
end
for i, player in pairs(workspace.GameplayAssets.Items.Normal.PaintBucket:GetDescendants()) do
if player.Name == "Paint" then
if not player:FindFirstChild("EspBox") then
local esp = Instance.new("BoxHandleAdornment", player.Parent)
local BillboardGui = Instance.new("BillboardGui")
local TextLabel = Instance.new("TextLabel")
esp.Adornee = player.Parent
esp.ZIndex = 0
esp.Size = Vector3.new(1.5, 1.8, 1.5)
esp.Transparency = 0.65
esp.Color3 = player.Color
esp.AlwaysOnTop = true
esp.Name = "EspBox"
BillboardGui.Parent = player.Parent
BillboardGui.AlwaysOnTop = true
BillboardGui.LightInfluence = 1
BillboardGui.Size = UDim2.new(0, 40, 0, 40)
BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
BillboardGui.Name = "BillobardEsp"
TextLabel.Parent = BillboardGui
TextLabel.BackgroundTransparency = 1
TextLabel.Size = UDim2.new(1, 0, 1, 0)
TextLabel.Text = player.Parent.Name
TextLabel.TextStrokeTransparency = 0
TextLabel.TextWrapped = false
TextLabel.TextColor3 = player.Color
spawn(function()
while player.Parent do
local distance = getDistance(localPlayer.Position, player.Position)
TextLabel.Text = player.Parent.Name .. " (" .. math.floor(distance) .. ")"
wait()
end
end)
end
end
end
function dellEsp()
for i, player in pairs(workspace:GetDescendants()) do
if player.Name == "BillobardEsp" and player:IsA("BillboardGui") then
player:Destroy()
end
if player.Name == "EspBox" then
player:Destroy()
end
end
end
end
})
AddButton(Main, {
Name = "اخترق الجدار",
Callback = function()
local Noclip = nil
local Clip = nil
function noclip()
Clip = false
local function Nocl()
if Clip == false and game.Players.LocalPlayer.Character ~= nil then
for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
v.CanCollide = false
end
end
end
wait(0.21) -- basic optimization
end
Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
end
function clip()
if Noclip then Noclip:Disconnect() end
Clip = true
end
noclip() -- to toggle noclip() and clip()
end
})
local Main = MakeTab({Name = "الاعب"})
AddButton(Main, {
Name = "سرعة 40%",
Callback = function()
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 40
end
})
AddButton(Main, {
Name = "قفز لا نهائي",
Callback = function()
local InfiniteJumpEnabled = true
game:GetService("UserInputService").JumpRequest:connect(function()
if InfiniteJumpEnabled then
game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
end
end)
end
})
AddButton(Main, {
Name = "عدم الموت",
Callback = function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end
})
AddButton(Main, {
Name = "قتل نفسك",
Callback = function()
game.Players.LocalPlayer.Character.Head:Destroy()
end
})
AddButton(Main, {
Name = "الطيران",
Callback = function()
loadstring(game:HttpGet('https://[Log in to view URL]'))()
end
})
To embed this project on your website, copy the following code and paste it into your website's HTML: