Back to Scripts
idk
ScriptBlox
Free
Game: (Maps)laser fights(early access)
152
Views
1
Likes
0
Dislikes

Geeorge42
offline
Features
uhhhh
Script Code
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
local gui = Instance.new("ScreenGui", player.PlayerGui)
local frame = Instance.new("Frame", gui)
local toggleButton = Instance.new("TextButton", gui)
local noclipButton = Instance.new("TextButton", frame)
local infiniteJumpButton = Instance.new("TextButton", frame)
local adminPanelButton = Instance.new("TextButton", frame)
local espButton = Instance.new("TextButton", frame)
local aimButton = Instance.new("TextButton", frame)
local godmodeButton = Instance.new("TextButton", frame) -- ΠΠ½ΠΎΠΏΠΊΠ° Π΄Π»Ρ God Mode
local invisibleButton = Instance.new("TextButton", frame) -- ΠΠ½ΠΎΠΏΠΊΠ° Π΄Π»Ρ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΎΡΡΠΈ
local flyButton = Instance.new("TextButton", frame) -- ΠΠ½ΠΎΠΏΠΊΠ° Π΄Π»Ρ ΠΏΠΎΠ»Π΅ΡΠ°
local messageLabel = Instance.new("TextLabel", gui)
-- ΠΠ°ΡΡΡΠΎΠΉΠΊΠΈ ΡΡΠ΅ΠΉΠΌΠ°
frame.Size = UDim2.new(0, 300, 0, 600)
frame.Position = UDim2.new(0.5, -150, 0.5, -275)
frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
frame.Visible = true
-- ΠΠ°ΡΡΡΠΎΠΉΠΊΠΈ ΠΊΠ½ΠΎΠΏΠΊΠΈ Hide/Show
toggleButton.Size = UDim2.new(0, 100, 0, 50)
toggleButton.Position = UDim2.new(0.8, 0, 0.1, 0)
toggleButton.Text = "Hide/Show"
toggleButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
-- ΠΠ°ΡΡΡΠΎΠΉΠΊΠΈ ΠΊΠ½ΠΎΠΏΠΎΠΊ
local buttonSettings = {
{noclipButton, "Noclip", Color3.fromRGB(255, 0, 0), UDim2.new(0, 10, 0, 10)},
{infiniteJumpButton, "Infinite Jump", Color3.fromRGB(0, 0, 255), UDim2.new(0, 10, 0, 70)},
{adminPanelButton, "Admin Panel", Color3.fromRGB(255, 255, 0), UDim2.new(0, 10, 0, 130)},
{espButton, "ESP Players", Color3.fromRGB(0, 255, 255), UDim2.new(0, 10, 0, 190)},
{aimButton, "Farm(not full auto)", Color3.fromRGB(255, 0, 255), UDim2.new(0, 10, 0, 250)},
{godmodeButton, "God Mode", Color3.fromRGB(0, 255, 0), UDim2.new(0, 10, 0, 310)}, -- ΠΠ°ΡΡΡΠΎΠΉΠΊΠΈ Π΄Π»Ρ God Mode
{invisibleButton, "Invisible", Color3.fromRGB(255, 165, 0), UDim2.new(0, 10, 0, 370)}, -- ΠΠ°ΡΡΡΠΎΠΉΠΊΠΈ Π΄Π»Ρ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΎΡΡΠΈ
{flyButton, "Fly", Color3.fromRGB(128, 0, 128), UDim2.new(0, 10, 0, 430)} -- ΠΠ°ΡΡΡΠΎΠΉΠΊΠΈ Π΄Π»Ρ ΠΏΠΎΠ»Π΅ΡΠ°
}
for _, setting in ipairs(buttonSettings) do
local button = setting[1]
button.Size = UDim2.new(0, 100, 0, 50)
button.Position = setting[4]
button.Text = setting[2]
button.BackgroundColor3 = setting[3]
end
-- ΠΠ°ΡΡΡΠΎΠΉΠΊΠΈ ΡΠ΅ΠΊΡΡΠΎΠ²ΠΎΠ³ΠΎ ΠΏΠΎΠ»Ρ ΡΠΎΠΎΠ±ΡΠ΅Π½ΠΈΡ
messageLabel.Size = UDim2.new(0, 250, 0, 100)
messageLabel.Position = UDim2.new(0.5, -125, 0.5, -50)
messageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
messageLabel.Text = "Pls use this script in game!"
messageLabel.TextColor3 = Color3.fromRGB(255, 0, 0)
messageLabel.TextScaled = true
messageLabel.Visible = false
-- ΠΠ΅ΡΠ΅ΠΌΠ΅Π½Π½ΡΠ΅ Π΄Π»Ρ ΡΠΎΡΡΠΎΡΠ½ΠΈΡ ΡΡΠ½ΠΊΡΠΈΠΉ
local noclipEnabled = false
local infiniteJumpEnabled = false
local jumpConnection
local espEnabled = false
local aimEnabled = false
local godmodeEnabled = false -- Π€Π»Π°Π³ Π΄Π»Ρ God Mode
local invisibleEnabled = false -- Π€Π»Π°Π³ Π΄Π»Ρ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΎΡΡΠΈ
local flyEnabled = false -- Π€Π»Π°Π³ Π΄Π»Ρ ΠΏΠΎΠ»Π΅ΡΠ°
local flyHeight = 40 -- ΠΡΡΠΎΡΠ° ΠΏΠΎΠ»Π΅ΡΠ°
local flyPart -- ΠΠ΅Π²ΠΈΠ΄ΠΈΠΌΠ°Ρ ΠΏΠ»Π°ΡΡΠΎΡΠΌΠ°
local originalPosition -- ΠΡΡ
ΠΎΠ΄Π½Π°Ρ ΠΏΠΎΠ·ΠΈΡΠΈΡ ΠΈΠ³ΡΠΎΠΊΠ°
-- ΠΡΠΎΠ²Π΅ΡΠΊΠ° ID ΠΈΠ³ΡΡ
local function checkGameID()
local gameId = game.PlaceId
return gameId == 85157449872032 or gameId == 85157449872032
end
-- ΠΠ½ΠΈΡΠΈΠ°Π»ΠΈΠ·Π°ΡΠΈΡ ΠΈΠ½ΡΠ΅ΡΡΠ΅ΠΉΡΠ°
local function initializeGUI()
frame.Visible = checkGameID()
messageLabel.Visible = not frame.Visible
end
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ ΡΠΊΡΡΡΠΈΡ/ΠΏΠΎΠΊΠ°Π·Π° ΡΡΠ΅ΠΉΠΌΠ° Ρ Π°Π½ΠΈΠΌΠ°ΡΠΈΠ΅ΠΉ
toggleButton.MouseButton1Click:Connect(function()
if frame.Visible then
frame:TweenPosition(UDim2.new(0.5, 300, 0.5, -275), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 0.5, true)
wait(0.5)
frame.Visible = false
else
frame.Visible = true
frame.Position = UDim2.new(0.5, 300, 0.5, -275) -- Π£ΡΡΠ°Π½Π°Π²Π»ΠΈΠ²Π°Π΅ΠΌ Π½Π°ΡΠ°Π»ΡΠ½ΡΡ ΠΏΠΎΠ·ΠΈΡΠΈΡ
frame:TweenPosition(UDim2.new(0.5, -150, 0.5, -275), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 0.5, true)
end
end)
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΈΡ/Π²ΡΠΊΠ»ΡΡΠ΅Π½ΠΈΡ noclip
local function toggleNoclip()
noclipEnabled = not noclipEnabled
local character = player.Character or player.CharacterAdded:Wait()
for _, part in pairs(character:GetChildren()) do
if part:IsA("BasePart") then
part.CanCollide = not noclipEnabled
end
end
noclipButton.BackgroundColor3 = noclipEnabled and Color3.fromRGB(0, 255, 0) or Color3.fromRGB(255, 0, 0)
end
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΈΡ/Π²ΡΠΊΠ»ΡΡΠ΅Π½ΠΈΡ Π±Π΅ΡΠΊΠΎΠ½Π΅ΡΠ½ΡΡ
ΠΏΡΡΠΆΠΊΠΎΠ²
local function toggleInfiniteJumps()
infiniteJumpEnabled = not infiniteJumpEnabled
local userInputService = game:GetService("UserInputService")
if infiniteJumpEnabled then
jumpConnection = userInputService.JumpRequest:Connect(function()
if player.Character and player.Character:FindFirstChildOfClass("Humanoid") then
player.Character:FindFirstChildOfClass("Humanoid"):ChangeState(Enum.HumanoidStateType.Jumping)
end
end)
infiniteJumpButton.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
else
if jumpConnection then
jumpConnection:Disconnect()
jumpConnection = nil
end
infiniteJumpButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
end
end
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΈΡ/Π²ΡΠΊΠ»ΡΡΠ΅Π½ΠΈΡ ESP Π΄Π»Ρ ΠΈΠ³ΡΠΎΠΊΠΎΠ²
local function toggleESP()
espEnabled = not espEnabled
for _, object in pairs(workspace:GetChildren()) do
if object:IsA("Model") and object:FindFirstChild("Humanoid") and object.Name ~= "KOlyaname11" then
local highlight = Instance.new("Highlight")
highlight.Adornee = object
highlight.FillColor = espEnabled and Color3.fromRGB(0, 255, 0) or Color3.fromRGB(255, 255, 255)
highlight.FillTransparency = 0.5
highlight.Parent = object
end
end
espButton.BackgroundColor3 = espEnabled and Color3.fromRGB(0, 255, 255) or Color3.fromRGB(255, 255, 255)
end
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ Π½Π°Π²ΠΎΠ΄ΠΊΠΈ Π½Π° Π±Π»ΠΈΠΆΠ°ΠΉΡΠ΅Π³ΠΎ ΠΈΠ³ΡΠΎΠΊΠ° ΠΈΠ· Π΄ΡΡΠ³ΠΎΠΉ ΠΊΠΎΠΌΠ°Π½Π΄Ρ
local function aimAtNearestPlayer()
aimEnabled = not aimEnabled
while aimEnabled do
local closestPlayer = nil
local closestDistance = math.huge
for _, otherPlayer in pairs(game.Players:GetPlayers()) do
if otherPlayer ~= player and otherPlayer.Team ~= player.Team and otherPlayer.Character and otherPlayer.Character:FindFirstChild("Humanoid") and otherPlayer.Character.Humanoid.Health > 0 and otherPlayer.Name ~= "KOlyaname11" then
local distance = (player.Character.HumanoidRootPart.Position - otherPlayer.Character.HumanoidRootPart.Position).magnitude
if distance < closestDistance then
closestDistance = distance
closestPlayer = otherPlayer
end
end
end
if closestPlayer then
local targetPosition = closestPlayer.Character.HumanoidRootPart.Position
player.Character.HumanoidRootPart.CFrame = CFrame.new(targetPosition + Vector3.new(0, 3, 0)) -- Π’Π΅Π»Π΅ΠΏΠΎΡΡΠ°ΡΠΈΡ ΠΊ ΠΈΠ³ΡΠΎΠΊΡ
workspace.CurrentCamera.CFrame = CFrame.new(targetPosition + Vector3.new(0, 3, 0), targetPosition) -- Π€ΠΈΠΊΡΠ°ΡΠΈΡ ΠΊΠ°ΠΌΠ΅ΡΡ Π½Π° ΠΈΠ³ΡΠΎΠΊΠ΅
end
wait(0.1) -- ΠΠ°Π΄Π΅ΡΠΆΠΊΠ° Π΄Π»Ρ ΡΠΌΠ΅Π½ΡΡΠ΅Π½ΠΈΡ Π½Π°Π³ΡΡΠ·ΠΊΠΈ
end
end
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΈΡ/Π²ΡΠΊΠ»ΡΡΠ΅Π½ΠΈΡ God Mode
local function toggleGodMode()
godmodeEnabled = not godmodeEnabled
local humanoid = player.Character and player.Character:FindFirstChildOfClass("Humanoid")
if godmodeEnabled then
humanoid.MaxHealth = math.huge
humanoid.Health = humanoid.MaxHealth
godmodeButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) -- Π¦Π²Π΅Ρ Π°ΠΊΡΠΈΠ²ΠΈΡΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΡΠ΅ΠΆΠΈΠΌΠ°
else
humanoid.MaxHealth = 100 -- ΠΠΎΠ·Π²ΡΠ°ΡΠ°Π΅ΠΌ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡΠ½ΠΎΠ΅ Π·Π΄ΠΎΡΠΎΠ²ΡΠ΅ Π½Π° ΡΡΠ°Π½Π΄Π°ΡΡΠ½ΠΎΠ΅ Π·Π½Π°ΡΠ΅Π½ΠΈΠ΅
godmodeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) -- Π¦Π²Π΅Ρ Π½Π΅Π°ΠΊΡΠΈΠ²ΠΈΡΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΡΠ΅ΠΆΠΈΠΌΠ°
end
end
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΈΡ/Π²ΡΠΊΠ»ΡΡΠ΅Π½ΠΈΡ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΎΡΡΠΈ
local function toggleInvisible()
invisibleEnabled = not invisibleEnabled
local character = player.Character or player.CharacterAdded:Wait()
for _, part in pairs(character:GetChildren()) do
if part:IsA("BasePart") then
part.Transparency = invisibleEnabled and 1 or 0 -- Π£ΡΡΠ°Π½Π°Π²Π»ΠΈΠ²Π°Π΅ΠΌ ΠΏΡΠΎΠ·ΡΠ°ΡΠ½ΠΎΡΡΡ
end
end
invisibleButton.BackgroundColor3 = invisibleEnabled and Color3.fromRGB(255, 255, 0) or Color3.fromRGB(255, 165, 0) -- Π¦Π²Π΅Ρ Π°ΠΊΡΠΈΠ²ΠΈΡΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΡΠ΅ΠΆΠΈΠΌΠ°
end
-- Π€ΡΠ½ΠΊΡΠΈΡ Π΄Π»Ρ Π²ΠΊΠ»ΡΡΠ΅Π½ΠΈΡ/Π²ΡΠΊΠ»ΡΡΠ΅Π½ΠΈΡ ΠΏΠΎΠ»Π΅ΡΠ°
local function toggleFly()
local character = player.Character or player.CharacterAdded:Wait()
if not flyEnabled then
flyEnabled = true
local humanoid = character:FindFirstChildOfClass("Humanoid")
originalPosition = character.HumanoidRootPart.Position -- Π‘ΠΎΡ
ΡΠ°Π½ΡΠ΅ΠΌ ΠΈΡΡ
ΠΎΠ΄Π½ΡΡ ΠΏΠΎΠ·ΠΈΡΠΈΡ
humanoid.WalkSpeed = 55 -- Π£ΡΡΠ°Π½Π°Π²Π»ΠΈΠ²Π°Π΅ΠΌ ΡΠΊΠΎΡΠΎΡΡΡ Ρ
ΠΎΠ΄ΡΠ±Ρ
-- ΠΠΎΠ΄Π½ΠΈΠΌΠ°Π΅ΠΌ ΠΈΠ³ΡΠΎΠΊΠ° Π½Π° Π·Π°Π΄Π°Π½Π½ΡΡ Π²ΡΡΠΎΡΡ
character.HumanoidRootPart.Position = originalPosition + Vector3.new(0, flyHeight, 0)
-- Π‘ΠΎΠ·Π΄Π°Π΅ΠΌ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΡΡ ΠΏΠ»Π°ΡΡΠΎΡΠΌΡ ΠΏΠΎΠ΄ Π½ΠΎΠ³Π°ΠΌΠΈ
if not flyPart then
flyPart = Instance.new("Part")
flyPart.Size = Vector3.new(2, 1, 2) -- Π Π°Π·ΠΌΠ΅Ρ ΠΏΠ»Π°ΡΡΠΎΡΠΌΡ
flyPart.Transparency = 1 -- ΠΠ΅Π²ΠΈΠ΄ΠΈΠΌΠ°Ρ ΠΏΠ»Π°ΡΡΠΎΡΠΌΠ°
flyPart.Anchored = true
flyPart.CanCollide = false
flyPart.Parent = workspace
end
flyPart.Position = character.HumanoidRootPart.Position - Vector3.new(0, 1.5, 0) -- ΠΠΎΠ·ΠΈΡΠΈΡ ΠΏΠΎΠ΄ Π½ΠΎΠ³Π°ΠΌΠΈ
flyButton.BackgroundColor3 = Color3.fromRGB(0, 128, 0) -- Π¦Π²Π΅Ρ Π°ΠΊΡΠΈΠ²ΠΈΡΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΡΠ΅ΠΆΠΈΠΌΠ°
else
flyEnabled = false
local humanoid = character:FindFirstChildOfClass("Humanoid")
humanoid.WalkSpeed = 16 -- ΠΠΎΠ·Π²ΡΠ°ΡΠ°Π΅ΠΌ ΡΡΠ°Π½Π΄Π°ΡΡΠ½ΡΡ ΡΠΊΠΎΡΠΎΡΡΡ
-- ΠΠΎΠ·Π²ΡΠ°ΡΠ°Π΅ΠΌ ΠΈΠ³ΡΠΎΠΊΠ° Π½Π° ΠΈΡΡ
ΠΎΠ΄Π½ΡΡ ΠΏΠΎΠ·ΠΈΡΠΈΡ
character.HumanoidRootPart.Position = originalPosition
-- Π£Π±ΠΈΡΠ°Π΅ΠΌ ΠΏΠ»Π°ΡΡΠΎΡΠΌΡ ΠΈΠ· Π²ΠΈΠ΄ΠΈΠΌΠΎΡΡΠΈ
if flyPart then
flyPart.Position = Vector3.new(0, -1000, 0) -- Π£Π±ΠΈΡΠ°Π΅ΠΌ ΠΏΠ»Π°ΡΡΠΎΡΠΌΡ ΠΈΠ· Π²ΠΈΠ΄ΠΈΠΌΠΎΡΡΠΈ
end
flyButton.BackgroundColor3 = Color3.fromRGB(128, 0, 128) -- Π¦Π²Π΅Ρ Π½Π΅Π°ΠΊΡΠΈΠ²ΠΈΡΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΡΠ΅ΠΆΠΈΠΌΠ°
end
end
-- ΠΡΠΈΠ²ΡΠ·ΠΊΠ° ΡΡΠ½ΠΊΡΠΈΠΉ ΠΊ ΠΊΠ½ΠΎΠΏΠΊΠ°ΠΌ
noclipButton.MouseButton1Click:Connect(toggleNoclip)
infiniteJumpButton.MouseButton1Click:Connect(toggleInfiniteJumps)
adminPanelButton.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end)
espButton.MouseButton1Click:Connect(toggleESP)
aimButton.MouseButton1Click:Connect(aimAtNearestPlayer) -- ΠΡΠΈΠ²ΡΠ·ΠΊΠ° Π΄Π»Ρ Aimbot
godmodeButton.MouseButton1Click:Connect(toggleGodMode) -- ΠΡΠΈΠ²ΡΠ·ΠΊΠ° Π΄Π»Ρ God Mode
invisibleButton.MouseButton1Click:Connect(toggleInvisible) -- ΠΡΠΈΠ²ΡΠ·ΠΊΠ° Π΄Π»Ρ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΎΡΡΠΈ
flyButton.MouseButton1Click:Connect(toggleFly) -- ΠΡΠΈΠ²ΡΠ·ΠΊΠ° Π΄Π»Ρ ΠΏΠΎΠ»Π΅ΡΠ°
-- ΠΠ½ΠΈΡΠΈΠ°Π»ΠΈΠ·Π°ΡΠΈΡ ΠΈΠ½ΡΠ΅ΡΡΠ΅ΠΉΡΠ° ΠΏΡΠΈ Π·Π°ΠΏΡΡΠΊΠ΅
initializeGUI()
Comments (0)
Please login to comment
Login with Discord
Loading comments...