Linemaster Universal Script

Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts—a popular scripting and programming language.

BloxScript4You


We do not any harmful on your devices we always check it before we post online.
Instruction
1.Open Roblox And Start Playing
2.Click The Blue Circle To Copy The Script Code
3.Paste The Script Code Into Your Executor
4.Then Execute The Script Code
5.Enjoy
Use your dummy account first we are not responsible if your account getting Ban.
Script Code
--// Settings
local Settings = {
    Aimbot = {
        Enabled = nil,
        Teamcheck = nil,
        Alivecheck = nil,
        Mode = nil,
        Stickyaim = nil,
        Alerts = nil,
        Aimpart = nil,
        Aimkey = nil,
        Distancecheck = {
            Enabled = nil,
            Value = nil
        },
        Smoothness = {
            Enabled = nil,
            SmoothnessValue = nil
        },
        Prediction = {
            Enabled = nil,
            PredValue = nil,
        },
        Fov = {
            Enabled = nil,
            Radius = nil,
            Color = nil
        },
        Shake = {
            Enabled = nil,
            ShakeValue = nil
        },
    }, 
    Blatant = {
        CFrameSpeed = {
            Enabled = nil,
            Value = nil
        },
        Fly = {
            Value = nil
        },
        MessageSpammer = {
            Enabled = nil,
            Message = nil,
            UseEmojis = nil
        },
    },
    Visuals = {
        Local = {
            Light = {
                Enabled = nil,
                Color = nil,
                Strength = nil
            },
            AspectRatio = {
                Enabled = nil,
                Value = nil
            },
            CloneChams = {
                Enabled = nil,
                Duration = nil,
                Color = nil,
                Material = nil
            },
            Nametag = {
                Enabled = nil,
                Color = nil
            },
        },
    },
}

--// Variables
local lplr = game:GetService("Players").LocalPlayer
local TweenService = game:GetService("TweenService")
local CurrentCamera = workspace.CurrentCamera
local lockedPlayer = nil
local aimbotkeybind = false 
local stickyLockedPlayer = nil
local mousemoverel = mousemoverel or (Input and Input.MouseMove)
local funny = {"unreadable code", "pasted code"}
local day = os.date(" %d", os.time())
local second_string = ", %Y."
local worldToViewportPoint = CurrentCamera.worldToViewportPoint
local mouse = lplr:GetMouse()
local UserInput = game:GetService("UserInputService")


--// get sub prefix or smth lmfao
function GetSubPrefix(str)
    local str = tostring(str):gsub(" ", "")
    local var = ""

    if #str == 2 then
        local sec = string.sub(str, #str, #str + 1)
        var = sec == "1" and "st" or sec == "2" and "nd" or sec == "3" and "rd" or "th"
    end

    return var
end


--// Library
local repo = "https://raw.githubusercontent.com/wally-rblx/LinoriaLib/main/"
local Library = loadstring(game:HttpGet(repo .. "Library.lua"))()
local ThemeManager = loadstring(game:HttpGet(repo .. "addons/ThemeManager.lua"))()
local SaveManager = loadstring(game:HttpGet(repo .. "addons/SaveManager.lua"))()

--// pasted esp no way
getgenv().taffy_esp = {
    box = {
        enabled1 = true,
        enabled = false,
        outline = false,
        healthbar = false,
        color1 = Color3.fromRGB(255, 255, 255),
        color2 = Color3.fromRGB(0, 0, 0),
        healthbarcolor = Color3.fromRGB(4, 0, 255)
    },
    tracer = {
        enabled = false,
        unlocktracers = false,
        color = Color3.fromRGB(255, 255, 255)
    },
    name = {
        enabled = false,
        outline = false,
        size = 13,
        font = 2,
        color = Color3.fromRGB(255, 255, 255)
    },
    misc = {
        teamcheck = false,
        useteamcolors = false,
        visibleonly = true
    },
    Toolsshow = {
        enable = false,
        outline = false,
        size = 8,
        font = 3,
        color = Color3.fromRGB(147, 39, 161)
    }
}

function esp(v)
    local BLOCKOUTLINE = Drawing.new("Square")
    BLOCKOUTLINE.Visible = false
    BLOCKOUTLINE.Color = Color3.new(0, 0, 0)
    BLOCKOUTLINE.Thickness = 3
    BLOCKOUTLINE.Transparency = 1
    BLOCKOUTLINE.Filled = false
    local BOXPLAYER = Drawing.new("Square")
    BOXPLAYER.Visible = false
    BOXPLAYER.Color = taffy_esp.box.color1
    BOXPLAYER.Thickness = 1
    BOXPLAYER.Transparency = 1
    BOXPLAYER.Filled = false
    local HealthBarOUTLINE = Drawing.new("Square")
    HealthBarOUTLINE.Thickness = 3
    HealthBarOUTLINE.Filled = false
    HealthBarOUTLINE.Color = Color3.new(0, 0, 0)
    HealthBarOUTLINE.Transparency = 1
    HealthBarOUTLINE.Visible = false
    local HealthBarITSELF = Drawing.new("Square")
    HealthBarITSELF.Thickness = 1
    HealthBarITSELF.Filled = false
    HealthBarITSELF.Transparency = 1
    HealthBarITSELF.Visible = false
    local Tracer = Drawing.new("Line")
    Tracer.Visible = false
    Tracer.Color = Color3.new(1, 1, 1)
    Tracer.Thickness = 1
    Tracer.Transparency = 1
    local Name = Drawing.new("Text")
    Name.Transparency = 1
    Name.Visible = false
    Name.Color = taffy_esp.name.color
    Name.Size = 16
    Name.Center = true
    Name.Outline = false
    Name.Font = 2
    Name.Text = "name [100/100]"
    local toolshow = Drawing.new("Text")
    toolshow.Transparency = 1
    toolshow.Visible = false
    toolshow.Color = getgenv().taffy_esp.Toolsshow.color
    toolshow.Size = 16
    toolshow.Center = true
    toolshow.Outline = false
    toolshow.Font = 2
    toolshow.Text = ""

    game:GetService("RunService").RenderStepped:Connect(function()
        if v.Character ~= nil and v.Character:FindFirstChild("Humanoid") ~= nil and v.Character:FindFirstChild("HumanoidRootPart") ~= nil and v ~= lplr and v.Character.Humanoid.Health > 0 and (not taffy_esp.misc.teamcheck or v.TeamColor ~= lplr.TeamColor) and v.Character:FindFirstChild("Head") ~= nil then
            local Vector, onScreen = CurrentCamera:worldToViewportPoint(v.Character.HumanoidRootPart.Position)
            local Distance = (CurrentCamera.CFrame.p - v.Character.HumanoidRootPart.Position).Magnitude
            local RootPart = v.Character.HumanoidRootPart
            local Head = v.Character.Head
            local RootPosition, RootVis = worldToViewportPoint(CurrentCamera, RootPart.Position)
            local HeadPosition = worldToViewportPoint(CurrentCamera, Head.Position + Vector3.new(0, 0.5, 0))
            local LegPosition = worldToViewportPoint(CurrentCamera, RootPart.Position - Vector3.new(0, 3, 0))

            if not taffy_esp.misc.visibleonly or onScreen then
                if taffy_esp.box.enabled1 then
                    BLOCKOUTLINE.Size = Vector2.new(2500 / RootPosition.Z, HeadPosition.Y - LegPosition.Y)
                    BLOCKOUTLINE.Position = Vector2.new(RootPosition.X - BLOCKOUTLINE.Size.X / 2, RootPosition.Y - BLOCKOUTLINE.Size.Y / 2)
                    BLOCKOUTLINE.Visible = taffy_esp.box.outline
                    BLOCKOUTLINE.Color = taffy_esp.box.color2
                    BOXPLAYER.Size = Vector2.new(2500 / RootPosition.Z, HeadPosition.Y - LegPosition.Y)
                    BOXPLAYER.Position = Vector2.new(RootPosition.X - BOXPLAYER.Size.X / 2, RootPosition.Y - BOXPLAYER.Size.Y / 2)
                    BOXPLAYER.Visible = taffy_esp.box.enabled

                    if not taffy_esp.misc.useteamcolors then
                        local color = v.TeamColor
                        BOXPLAYER.Color = taffy_esp.box.color1
                    else
                        BOXPLAYER.Color = taffy_esp.box.color1
                    end

                    HealthBarOUTLINE.Size = Vector2.new(2, HeadPosition.Y - LegPosition.Y)
                    HealthBarOUTLINE.Position = HealthBarOUTLINE.Position - Vector2.new(6, 0)
                    HealthBarOUTLINE.Visible = taffy_esp.box.outline
                    HealthBarITSELF.Size = Vector2.new(2, (HeadPosition.Y - LegPosition.Y) / (v.Character.Humanoid.MaxHealth / math.clamp(v.Character.Humanoid.Health, 0, v.Character.Humanoid.MaxHealth)))
                    HealthBarITSELF.Position = Vector2.new(BOXPLAYER.Position.X - 5, BOXPLAYER.Position.Y + (1 / HealthBarITSELF.Size.Y))
                    HealthBarITSELF.Color = taffy_esp.box.healthbarcolor
                    HealthBarITSELF.Visible = taffy_esp.box.healthbar
                else
                    BLOCKOUTLINE.Visible = false
                    BOXPLAYER.Visible = false
                    HealthBarOUTLINE.Visible = false
                    HealthBarITSELF.Visible = false
                end

                if taffy_esp.tracer.enabled then
                    if taffy_esp.tracer.unlocktracers then
                        Tracer.From = Vector2.new(mouse.X, mouse.Y + 36)
                    else
                        Tracer.From = Vector2.new(CurrentCamera.ViewportSize.X / 2, CurrentCamera.ViewportSize.Y / 1)
                    end

                    Tracer.To = Vector2.new(Vector.X, Vector.Y)
                    Tracer.Visible = taffy_esp.tracer.enabled

                    if not taffy_esp.misc.useteamcolors then
                        local color = v.TeamColor
                        Tracer.Color = taffy_esp.tracer.color
                    else
                        Tracer.Color = taffy_esp.tracer.color
                    end
                else
                    Tracer.Visible = false
                end

                if taffy_esp.Toolsshow.enable then
                    local Equipped = v.Character:FindFirstChildOfClass("Tool") and v.Character:FindFirstChildOfClass("Tool").Name or "None"
                    toolshow.Text = Equipped
                    toolshow.Position = Vector2.new(CurrentCamera:WorldToViewportPoint(v.Character.Head.Position).X, CurrentCamera:WorldToViewportPoint(v.Character.Head.Position).Y + 30)
                    toolshow.Color = getgenv().taffy_esp.Toolsshow.color
                    toolshow.Font = 3
                    Name.Size = taffy_esp.Toolsshow.size
                    toolshow.Visible = true
                else
                    toolshow.Visible = false
                end

                if taffy_esp.name.enabled then
                    Name.Text = tostring(v.Character.Humanoid.DisplayName) .. " [" .. tostring(math.floor(v.Character.Humanoid.Health + 0.5)) .. "/" .. tostring(v.Character.Humanoid.MaxHealth) .. "]"
                    Name.Position = Vector2.new(CurrentCamera:WorldToViewportPoint(v.Character.Head.Position).X, CurrentCamera:WorldToViewportPoint(v.Character.Head.Position).Y - 30)
                    Name.Visible = true
                    Name.Size = taffy_esp.name.size

                    if not taffy_esp.misc.useteamcolors then
                        local color = v.TeamColor   
                        Name.Color = taffy_esp.name.color
                    else
                        Name.Color = taffy_esp.name.color
                    end

                    Name.Outline = taffy_esp.name.outline
                else
                    Name.Visible = false
                end
            else
                BLOCKOUTLINE.Visible = false
                BOXPLAYER.Visible = false
                toolshow.Visible = false
                HealthBarOUTLINE.Visible = false
                HealthBarITSELF.Visible = false
                Tracer.Visible = false
                Name.Visible = false
            end
        else
            toolshow.Visible = false
            BLOCKOUTLINE.Visible = false
            BOXPLAYER.Visible = false
            HealthBarOUTLINE.Visible = false
            HealthBarITSELF.Visible = false
            Tracer.Visible = false
            Name.Visible = false
        end
    end)
end

for i, v in pairs(game.Players:GetChildren()) do
    esp(v)
end

game.Players.PlayerAdded:Connect(function(v)
    esp(v)
end)

--// Create the  main window
local Window = Library:CreateWindow({
    Title = "Universal Aimbot and Esp made by Linemaster",
    Center = true,
    AutoShow = true,
})

--// Create the main tabs
local Tabs = {
    Aiming = Window:AddTab("Aiming"),
    Visuals = Window:AddTab("Visuals"),
    MiscTab = Window:AddTab("Misc"),
    UiSettings = Window:AddTab("Settings")
}

--// Sections
local AimbotTab = Tabs.Aiming:AddLeftGroupbox("Aimbot")
local EspTab = Tabs.Visuals:AddLeftGroupbox("Esp")
local LightTab = Tabs.Visuals:AddRightGroupbox("Light")
local AspectRatioTab = Tabs.Visuals:AddLeftGroupbox("Aspect Ratio")
local NameTagTab = Tabs.Visuals:AddRightGroupbox("Nametag")
local CloneChamsTab = Tabs.Visuals:AddRightGroupbox("Clone Chams")
local WorldTab = Tabs.Visuals:AddLeftGroupbox("World")
local MessageSpammer = Tabs.MiscTab:AddLeftGroupbox("Chat Spammer")
local FakeAnimations = Tabs.MiscTab:AddLeftGroupbox("Fake Animations")
local CFrameSpeedTab = Tabs.MiscTab:AddRightGroupbox("CFrame Speed")
local FlyTab = Tabs.MiscTab:AddRightGroupbox("Fly")
local MenuGroup = Tabs.UiSettings:AddLeftGroupbox("Config")

--// Toggles and shit
AimbotTab:AddToggle("AimbotEnabledFunny", {
    Text = "Enabled",
    Default = false,
    Tooltip = "Aimbot Enabled",
})

Toggles.AimbotEnabledFunny:OnChanged(function()
    Settings.Aimbot.Enabled = Toggles.AimbotEnabledFunny.Value
end)

AimbotTab:AddToggle("AimbotStickyAimFunny", {
    Text = "Sticky Aim",
    Default = false,
    Tooltip = "Sticky Aim Enabled",
})

Toggles.AimbotStickyAimFunny:OnChanged(function()
    Settings.Aimbot.Stickyaim = Toggles.AimbotStickyAimFunny.Value
end)

Toggles.AimbotStickyAimFunny:AddKeyPicker("AimbotKeyPickerFunny", {
    Default = "None",
    SyncToggleState = false,
    Mode = "Toggle",
    Text = "Aimbot",
    NoUI = false,
})

Options.AimbotKeyPickerFunny:OnClick(function()
    if Settings.Aimbot.Enabled and Settings.Aimbot.Stickyaim then
        aimbotkeybind = not aimbotkeybind

        if aimbotkeybind then
            stickyLockedPlayer  = aimbotGetClosestPlayer()

            if stickyLockedPlayer  and Settings.Aimbot.Alerts then
                Library:Notify("Locked onto: " .. tostring(stickyLockedPlayer.Character.Humanoid.DisplayName))
            end
        elseif not aimbotkeybind then
            if stickyLockedPlayer  and Settings.Aimbot.Alerts then
                Library:Notify("Unlocked")
            end
            stickyLockedPlayer  = nil
        end
    end
end)

AimbotTab:AddToggle("AimbotTeamcheckFunny", {
    Text = "Teamcheck",
    Default = false,
    Tooltip = "Teamcheck Enabled",
})

Toggles.AimbotTeamcheckFunny:OnChanged(function()
    Settings.Aimbot.Teamcheck = Toggles.AimbotTeamcheckFunny.Value
end)

AimbotTab:AddToggle("AimbotAlivecheckFunny", {
    Text = "Alivecheck",
    Default = false,
    Tooltip = "Alivecheck Enabled",
})

Toggles.AimbotAlivecheckFunny:OnChanged(function()
    Settings.Aimbot.Alivecheck = Toggles.AimbotAlivecheckFunny.Value
end)

AimbotTab:AddToggle("AimbotDistancecheckToggleFunny", {
    Text = "Distance Check",
    Default = false,
    Tooltip = "Distance Check Enabled",
})

Toggles.AimbotDistancecheckToggleFunny:OnChanged(function()
    Settings.Aimbot.Distancecheck.Enabled = Toggles.AimbotDistancecheckToggleFunny.Value
end)

AimbotTab:AddSlider("AimbotDistancecheckSliderFunny", {
    Text = "Distance",
    Default = 100,
    Min = 10,
    Max = 100000,
    Rounding = 1,
    Compact = false,
})

Options.AimbotDistancecheckSliderFunny:OnChanged(function()
    Settings.Aimbot.Distancecheck.Value = Options.AimbotDistancecheckSliderFunny.Value
end)

AimbotTab:AddToggle("AimbotAlertsToggleFunny", {
    Text = "Alerts",
    Default = false,
    Tooltip = "Alerts Enabled",
})

Toggles.AimbotAlertsToggleFunny:OnChanged(function()
    Settings.Aimbot.Alerts = Toggles.AimbotAlertsToggleFunny.Value
end)


AimbotTab:AddDropdown("ModeCheckThingYk", {
    Values = {"First Person", "Third Person"},
    Default = 1,
    Multi = false,
    Text = "Mode",
})

Options.ModeCheckThingYk:OnChanged(function()
    Settings.Aimbot.Mode = Options.ModeCheckThingYk.Value
end)

AimbotTab:AddDropdown("PartToAimOnFunnyHaha", {
    Values = {"Head", "HumanoidRootPart"},
    Default = 1,
    Multi = false,
    Text = "AimPart",
})

Options.PartToAimOnFunnyHaha:OnChanged(function()
    Settings.Aimbot.Aimpart = Options.PartToAimOnFunnyHaha.Value
end)

AimbotTab:AddDropdown("KeytoAimDropdown", {
    Values = {"RMB", "LMB"},
    Default = 2,
    Multi = false,
    Text = "Key",
})

Options.KeytoAimDropdown:OnChanged(function()
    Settings.Aimbot.Aimkey = Options.KeytoAimDropdown.Value
end)

AimbotTab:AddToggle("PredToggleFunny", {
    Text = "Use Prediction",
    Default = false,
    Tooltip = "Prediction Enabled",
})

Toggles.PredToggleFunny:OnChanged(function()
    Settings.Aimbot.Prediction.Enabled = Toggles.PredToggleFunny.Value
end)

AimbotTab:AddInput("PredictionValueTextBoxFunny", {
    Default = "0.135",
    Numeric = true,
    Finished = false,
    Text = "Prediction",
    Tooltip = "Prediction to Use",
    Placeholder = "Example = 0.135",
})

Options.PredictionValueTextBoxFunny:OnChanged(function()
    Settings.Aimbot.Prediction.PredValue = Options.PredictionValueTextBoxFunny.Value
end)

AimbotTab:AddToggle("ShakeEnabledOwO", {
    Text = "Use Shake",
    Default = false,
    Tooltip = "Shake Enabled",
})

Toggles.ShakeEnabledOwO:OnChanged(function()
    Settings.Aimbot.Shake.Enabled = Toggles.ShakeEnabledOwO.Value
end)

AimbotTab:AddSlider("ShakeValueOwO", {
    Text = "Shake Value",
    Default = 0.1,
    Min = 0.1,
    Max = 10,
    Rounding = 1,
    Compact = false,
})

Options.ShakeValueOwO:OnChanged(function()
    Settings.Aimbot.Shake.ShakeValue = Options.ShakeValueOwO.Value
end)


AimbotTab:AddToggle("UseFovAimbotFunny", {
    Text = "Use fov",
    Default = false,
    Tooltip = "Fov Enabled",
})

Toggles.UseFovAimbotFunny:OnChanged(function()
    Settings.Aimbot.Fov.Enabled = Toggles.UseFovAimbotFunny.Value
end)

Toggles.UseFovAimbotFunny:AddColorPicker("FovCircleColorFunny", {
    Default = Color3.fromRGB(255, 255, 255),
    Title = "Aimbot FOV Color"
})

Options.FovCircleColorFunny:OnChanged(function()
    Settings.Aimbot.Fov.Color = Options.FovCircleColorFunny.Value
end)

AimbotTab:AddSlider("FovCircleRadius", {
    Text = "Radius",
    Default = 100,
    Min = 100,
    Max = 800,
    Rounding = 1,
    Compact = false,
})

Options.FovCircleRadius:OnChanged(function()
    Settings.Aimbot.Fov.Radius = Options.FovCircleRadius.Value
end)

AimbotTab:AddToggle("ToggleSmoothnessNoWay", {
    Text = "Smoothing Enabled",
    Default = false,
    Tooltip = "Smoothing Enabled",
})

Toggles.ToggleSmoothnessNoWay:OnChanged(function()
    Settings.Aimbot.Smoothness.Enabled = Toggles.ToggleSmoothnessNoWay.Value
end)


AimbotTab:AddSlider("SmoothnessValueAimbotOwO", {
    Text = "Smoothness",
    Default = 0,
    Min = 0,
    Max = 1,
    Rounding = 2,
    Compact = false,
})

Options.SmoothnessValueAimbotOwO:OnChanged(function()
    Settings.Aimbot.Smoothness.SmoothnessValue = Options.SmoothnessValueAimbotOwO.Value
end)

EspTab:AddToggle("BoxesEnableToggleNoWay", {
    Text = "Boxes",
    Default = false,
    Tooltip = "Boxes Enabled",
})

Toggles.BoxesEnableToggleNoWay:OnChanged(function()
    taffy_esp.box.enabled = Toggles.BoxesEnableToggleNoWay.Value
end)

Toggles.BoxesEnableToggleNoWay:AddColorPicker("BoxesEnableColorPickerNoWay", {
    Default = Color3.fromRGB(255, 255, 255),
    Title = "Boxes Color"
})

Options.BoxesEnableColorPickerNoWay:OnChanged(function()
    taffy_esp.box.color1 = Options.BoxesEnableColorPickerNoWay.Value
end)

EspTab:AddToggle("NamesEnableToggleNoWay", {
    Text = "Names",
    Default = false,
    Tooltip = "Names Enabled",
})

Toggles.NamesEnableToggleNoWay:OnChanged(function()
    taffy_esp.name.enabled = Toggles.NamesEnableToggleNoWay.Value
end)

Toggles.NamesEnableToggleNoWay:AddColorPicker("NamesEnableColorPickerNoWay", {
    Default = Color3.fromRGB(255, 255, 255),
    Title = "Names Color"
})

Options.NamesEnableColorPickerNoWay:OnChanged(function()
    taffy_esp.name.color = Options.NamesEnableColorPickerNoWay.Value
end)

EspTab:AddToggle("TracersEnableToggleNoWay", {
    Text = "Tracers",
    Default = false,
    Tooltip = "Tracers Enabled",
})

Toggles.TracersEnableToggleNoWay:OnChanged(function()
    taffy_esp.tracer.enabled = Toggles.TracersEnableToggleNoWay.Value
end)

Toggles.TracersEnableToggleNoWay:AddColorPicker("TracersEnableColorPickerNoWay", {
    Default = Color3.fromRGB(255, 255, 255),
    Title = "Tracers Color"
})

Options.TracersEnableColorPickerNoWay:OnChanged(function()
    taffy_esp.tracer.color = Options.TracersEnableColorPickerNoWay.Value
end)

EspTab:AddToggle("UnlockTracersEnableToggleNoWay", {
    Text = "Unlock Tracers",
    Default = false,
    Tooltip = "Unlock Tracers Enabled",
})

Toggles.UnlockTracersEnableToggleNoWay:OnChanged(function()
    taffy_esp.tracer.unlocktracers = Toggles.UnlockTracersEnableToggleNoWay.Value
end)

EspTab:AddToggle("MiscTeamcheckToggle", {
    Text = "Teamcheck",
    Default = false,
    Tooltip = "Teamcheck Enabled",
})

Toggles.MiscTeamcheckToggle:OnChanged(function()
    taffy_esp.misc.teamcheck = Toggles.MiscTeamcheckToggle.Value
end)

LightTab:AddToggle("LightHeadToggleFunny", {
    Text = "Light",
    Default = false,
    Tooltip = "Light Enabled",
})

Toggles.LightHeadToggleFunny:OnChanged(function()
    Settings.Visuals.Local.Light.Enabled = Toggles.LightHeadToggleFunny.Value
end)

Toggles.LightHeadToggleFunny:AddColorPicker("LightHeadFunnyColorPicker", {
    Default = Color3.fromRGB(255, 255, 255),
    Title = "Light Color"
})

Options.LightHeadFunnyColorPicker:OnChanged(function()
    Settings.Visuals.Local.Light.Color = Options.LightHeadFunnyColorPicker.Value
end)

LightTab:AddSlider("LightHeadSliderFunny", {
    Text = "Strength",
    Default = 1,
    Min = 1,
    Max = 100,
    Rounding = 1,
    Compact = false,
})

Options.LightHeadSliderFunny:OnChanged(function()
    Settings.Visuals.Local.Light.Strength = Options.LightHeadSliderFunny.Value
end)

AspectRatioTab:AddToggle("AspectRaioEnabled", {
    Text = "Enabled",
    Default = false,
    Tooltip = "Aspect Ratio Enabled",
})

Toggles.AspectRaioEnabled:OnChanged(function()
    Settings.Visuals.Local.AspectRatio.Enabled = Toggles.AspectRaioEnabled.Value
end)

AspectRatioTab:AddSlider("AspectRatioValue", {
    Text = "Value",
    Default = 1,
    Min = 0.1,
    Max = 1,
    Rounding = 2,
    Compact = false,
})


Options.AspectRatioValue:OnChanged(function()
    Settings.Visuals.Local.AspectRatio.Value = Options.AspectRatioValue.Value
end)

NameTagTab:AddToggle("NametagEnabledFunnyHaha", {
    Text = "Enabled",
    Default = false,
    Tooltip = "Nametag Enabled",
})

Toggles.NametagEnabledFunnyHaha:OnChanged(function()
    Settings.Visuals.Local.Nametag.Enabled = Toggles.NametagEnabledFunnyHaha.Value
end)

Toggles.NametagEnabledFunnyHaha:AddColorPicker("NametagColorPickerFunny", {
    Default = Color3.fromRGB(255, 255, 255),
    Title = "Nametag Color"
})

Options.NametagColorPickerFunny:OnChanged(function()
    Settings.Visuals.Local.Nametag.Color = Options.NametagColorPickerFunny.Value
end)

CloneChamsTab:AddToggle("CloneChamsEnabled", {
    Text = "Clone Chams",
    Default = false,
    Tooltip = "Clone Chams Enabled",
})

Toggles.CloneChamsEnabled:OnChanged(function()
    Settings.Visuals.Local.CloneChams.Enabled = Toggles.CloneChamsEnabled.Value
end)

Toggles.CloneChamsEnabled:AddColorPicker("CloneChamsColor", {
    Default = Color3.fromRGB(255, 255, 255),
    Title = "Clone Chams Color"
})

Options.CloneChamsColor:OnChanged(function()
    Settings.Visuals.Local.CloneChams.Color = Options.CloneChamsColor.Value
end)

local function getEnumMaterial(materialString)
    local materialMap = {
        ["Neon"] = Enum.Material.Neon,
        ["ForceField"] = Enum.Material.ForceField,
        ["Plastic"] = Enum.Material.Plastic,
    }
    return materialMap[materialString] or Enum.Material.Neon
end

task.spawn(function()
    while true do
        wait()
        if Settings.Visuals.Local.CloneChams.Enabled then
            repeat
                lplr.Character.Archivable = true
                local Clone = lplr.Character:Clone()
                for _, Obj in next, Clone:GetDescendants() do
                    if Obj.Name == "HumanoidRootPart" or Obj:IsA("Humanoid") or Obj:IsA("LocalScript") or Obj:IsA("Script") or Obj:IsA("Decal") then
                        Obj:Destroy()
                    elseif Obj:IsA("BasePart") or Obj:IsA("MeshPart") or Obj:IsA("Part") then
                        if Obj.Transparency == 1 then
                            Obj:Destroy()
                        else
                            Obj.CanCollide = false
                            Obj.Anchored = true
                            Obj.Material = getEnumMaterial(Settings.Visuals.Local.CloneChams.Material)

                            Obj.Color = Settings.Visuals.Local.CloneChams.Color
                            Obj.Transparency = 0
                            Obj.Size = Obj.Size + Vector3.new(0.03, 0.03, 0.03)
                        end
                    end
                end

                Clone.Parent = workspace
                wait(Settings.Visuals.Local.CloneChams.Duration)
                Clone:Destroy()
            until not Settings.Visuals.Local.CloneChams.Enabled
        end
    end
end)

CloneChamsTab:AddSlider("DurationSliderWHAT", {
    Text = "Duration",
    Default = 0.1,
    Min = 0.1,
    Max = 3,
    Rounding = 2,
    Compact = false,
})

Options.DurationSliderWHAT:OnChanged(function()
    Settings.Visuals.Local.CloneChams.Duration = Options.DurationSliderWHAT.Value
end)

CloneChamsTab:AddDropdown("CloneChamsMaterial", {
    Values = {"Neon", "ForceField", "Plastic"},
    Default = 2,
    Multi = false,
    Text = "Clone Chams Material",
    Tooltip = "Clone Chams Material",
})

Options.CloneChamsMaterial:OnChanged(function()
    Settings.Visuals.Local.CloneChams.Material = Options.CloneChamsMaterial.Value
end)

WorldTab:AddLabel("Ambient"):AddColorPicker("AmbientColorPicker", {
    Default = Color3.fromRGB(0, 0, 0),
    Title = "Ambient",
})

Options.AmbientColorPicker:OnChanged(function()
    if AmbientRainbowMode == true then
    else
        game.Lighting.Ambient = Options.AmbientColorPicker.Value
    end
end)

WorldTab:AddToggle("RainbowAmbient", {
    Text = "Rainbow Ambient",
    Default = false,
    Tooltip = "Rainbow Ambient Enabled",
})

Toggles.RainbowAmbient:OnChanged(function()
    AmbientRainbowMode = Toggles.RainbowAmbient.Value

    if Toggles.RainbowAmbient.Value then
        while Toggles.RainbowAmbient.Value do
            wait()
            game:GetService("Lighting").Ambient = Color3.new(255 / 255, 0 / 255, 0 / 255)

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").Ambient = Color3.new(255 / 255, i / 255, 0 / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").Ambient = Color3.new(i / 255, 255 / 255, 0 / 255)
            end

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").Ambient = Color3.new(0 / 255, 255 / 255, i / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").Ambient = Color3.new(0 / 255, i / 255, 255 / 255)
            end

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").Ambient = Color3.new(i / 255, 0 / 255, 255 / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").Ambient = Color3.new(255 / 255, 0 / 255, i / 255)
            end

            if Toggles.RainbowAmbient.Value == false then break end
        end
    end
end)

local AmbientReset = WorldTab:AddButton("Reset to Default", function()
    Options.AmbientColorPicker:SetValueRGB(Color3.fromRGB(0, 0, 0))
end)

Options.AmbientColorPicker:SetValueRGB(Color3.fromRGB(0, 0, 0))

WorldTab:AddLabel("Outdoor Ambient"):AddColorPicker("OutdoorAmbientColor", {
    Default = Color3.fromRGB(152, 152, 146),
    Title = "Outdoor Ambient",
})

Options.OutdoorAmbientColor:OnChanged(function()
    if OutdoorAmbientRainbowMode then
    else
        game.Lighting.OutdoorAmbient = Options.OutdoorAmbientColor.Value
    end
end)

WorldTab:AddToggle("RainbowOutdoorAmbient", {
    Text = "Rainbow Outdoor",
    Default = false,
    Tooltip = "Rainbow Outdoor Ambient Enabled",
})

Toggles.RainbowOutdoorAmbient:OnChanged(function()
    OutdoorAmbientRainbowMode = Toggles.RainbowOutdoorAmbient.Value

    if Toggles.RainbowOutdoorAmbient.Value then
        while Toggles.RainbowOutdoorAmbient.Value do
            wait()
            game:GetService("Lighting").OutdoorAmbient = Color3.new(255 / 255, 0 / 255, 0 / 255)

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").OutdoorAmbient = Color3.new(255 / 255, i / 255, 0 / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").OutdoorAmbient = Color3.new(i / 255, 255 / 255, 0 / 255)
            end

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").OutdoorAmbient = Color3.new(0 / 255, 255 / 255, i / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").OutdoorAmbient = Color3.new(0 / 255, i / 255, 255 / 255)
            end

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").OutdoorAmbient = Color3.new(i / 255, 0 / 255, 255 / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").OutdoorAmbient = Color3.new(255 / 255, 0 / 255, i / 255)
            end

            if Toggles.RainbowOutdoorAmbient.Value == false then break end
        end
    end
end)

local OutdoorAmbientReset = WorldTab:AddButton("Reset to Default", function()
    Options.OutdoorAmbientColor:SetValueRGB(Color3.fromRGB(152, 152, 146))
end)

Options.OutdoorAmbientColor:SetValueRGB(Color3.fromRGB(152, 152, 146))

WorldTab:AddSlider("FogEndSlider", {
    Text = "Fog End",
    Default = 500,
    Min = 1,
    Max = 500,
    Rounding = 1,
    Compact = false,
})

Options.FogEndSlider:OnChanged(function()
    game.Lighting.FogEnd = Options.FogEndSlider.Value
end)

WorldTab:AddLabel("Fog Color"):AddColorPicker("FogColorColorPicker", {
    Default = Color3.fromRGB(100, 87, 72),
    Title = "Fog Color",
})

Options.FogColorColorPicker:OnChanged(function()
    if FogRainbowMode then
    else
        game.Lighting.FogColor = Options.FogColorColorPicker.Value
    end
end)

WorldTab:AddToggle("RainbowFogColor", {
    Text = "Rainbow Outdoor",
    Default = false,
    Tooltip = "Rainbow Outdoor Ambient Enabled",
})

Toggles.RainbowFogColor:OnChanged(function()
    FogRainbowMode = Toggles.RainbowFogColor.Value

    if Toggles.RainbowFogColor.Value then
        while Toggles.RainbowFogColor.Value do
            wait()
            game:GetService("Lighting").FogColor = Color3.new(255 / 255, 0 / 255, 0 / 255)

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").FogColor = Color3.new(255 / 255, i / 255, 0 / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").FogColor = Color3.new(i / 255, 255 / 255, 0 / 255)
            end

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").FogColor = Color3.new(0 / 255, 255 / 255, i / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").FogColor = Color3.new(0 / 255, i / 255, 255 / 255)
            end

            for i = 0, 255, 10 do
                wait()
                game:GetService("Lighting").FogColor = Color3.new(i / 255, 0 / 255, 255 / 255)
            end

            for i = 255, 0, -10 do
                wait()
                game:GetService("Lighting").FogColor = Color3.new(255 / 255, 0 / 255, i / 255)
            end

            if Toggles.RainbowFogColor.Value == false then break end
        end
    end
end)

local ResetFogEnd = WorldTab:AddButton("Reset to Default", function()
    Options.FogEndSlider:SetValue(500)
    Options.FogColorColorPicker:SetValueRGB(Color3.fromRGB(100, 87, 72))
end)

WorldTab:AddToggle("GlobalShadowsEnabled", {
    Text = "Global Shadows",
    Default = true,
    Tooltip = "Global Shadows Enabled",
})

Toggles.GlobalShadowsEnabled:OnChanged(function()
    game.Lighting.GlobalShadows = Toggles.GlobalShadowsEnabled.Value
end)

WorldTab:AddSlider("Saturation", {
    Text = "Saturation",
    Default = 0,
    Min = 0,
    Max = 10,
    Rounding = 1,
    Compact = false,
})

Options.Saturation:OnChanged(function()
    local ColorCorrection = game.Lighting:FindFirstChildOfClass("ColorCorrectionEffect") or Instance.new("ColorCorrectionEffect")
    ColorCorrection.Saturation = Options.Saturation.Value
end)

WorldTab:AddSlider("Contrast", {
    Text = "Contrast",
    Default = 0.1,
    Min = 0,
    Max = 10,
    Rounding = 1,
    Compact = false,
})

Options.Contrast:OnChanged(function()
    local ColorCorrection = game.Lighting:FindFirstChildOfClass("ColorCorrectionEffect") or Instance.new("ColorCorrectionEffect")
    ColorCorrection.Contrast = Options.Contrast.Value
end)

MessageSpammer:AddToggle("EnableMessageSpammerLo", {
    Text = "Enabled",
    Default = false,
    Tooltip = "Message Spammer Enabled",
})

Toggles.EnableMessageSpammerLo:OnChanged(function()
    Settings.Blatant.MessageSpammer.Enabled = Toggles.EnableMessageSpammerLo.Value
end)

MessageSpammer:AddToggle("EnableMessageSpammerEmojisLo", {
    Text = "Use Emojis",
    Default = false,
    Tooltip = "Use Emojis Enabled",
})

Toggles.EnableMessageSpammerEmojisLo:OnChanged(function()
    Settings.Blatant.MessageSpammer.UseEmojis = Toggles.EnableMessageSpammerEmojisLo.Value
end)

MessageSpammer:AddInput("MessageSpammerMessagetoSpamLo", {
    Default = "",
    Numeric = false,
    Finished = false,
    Text = "Message",
    Tooltip = "Message to Spam",
    Placeholder = "Example1, Example2",
})

Options.MessageSpammerMessagetoSpamLo:OnChanged(function()
    Settings.Blatant.MessageSpammer.Message = Options.MessageSpammerMessagetoSpamLo.Value
end)

FakeAnimations:AddDropdown("RunAnimations", {
    Values = {"None", "Rthro", "Werewolf", "Zombie", "Ninja", "Toy", "Superhero", "OldSchool", "Cartoony", "Stylish", "Vampire"},
    Default = 1,
    Multi = false,
    Text = "Run",
})

Options.RunAnimations:OnChanged(function()
    ChangeAnimHook = game:GetService("RunService").Stepped:Connect(function()
        if Options.RunAnimations.Value == "None" then
        elseif Options.RunAnimations.Value == "Rthro" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=2510198475"
        elseif Options.RunAnimations.Value == "Werewolf" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083216690"
        elseif Options.RunAnimations.Value == "Zombie" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
        elseif Options.RunAnimations.Value == "Ninja" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=656118852"
        elseif Options.RunAnimations.Value == "Toy" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
        elseif Options.RunAnimations.Value == "Superhero" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616117076"
        elseif Options.RunAnimations.Value == "OldSchool" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=5319844329"
        elseif Options.RunAnimations.Value == "Cartoony" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=742638842"
        elseif Options.RunAnimations.Value == "Stylish" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616140816"
        elseif Options.RunAnimations.Value == "Vampire" then
            lplr.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083462077"
        end
    end)
end)

FakeAnimations:AddDropdown("JumpAnimations", {
    Values = {"None", "Rthro", "Werewolf", "Zombie", "Ninja", "Toy", "Superhero", "OldSchool", "Cartoony", "Stylish", "Vampire"},
    Default = 1,
    Multi = false,
    Text = "Jump",
})

Options.JumpAnimations:OnChanged(function()
    ChangeJumpAnimHook = game:GetService("RunService").Stepped:Connect(function()
        if Options.JumpAnimations.Value == "None" then
        elseif Options.JumpAnimations.Value == "Rthro" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=2510197830"
        elseif Options.JumpAnimations.Value == "Werewolf" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083218792"
        elseif Options.JumpAnimations.Value == "Zombie" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
        elseif Options.JumpAnimations.Value == "Ninja" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=656117878"
        elseif Options.JumpAnimations.Value == "Toy" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
        elseif Options.JumpAnimations.Value == "Superhero" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
        elseif Options.JumpAnimations.Value == "OldSchool" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=5319841935"
        elseif Options.JumpAnimations.Value == "Cartoony" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=742637942"
        elseif Options.JumpAnimations.Value == "Stylish" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616139451"
        elseif Options.JumpAnimations.Value == "Vampire" then
            lplr.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083455352"
        end
    end)
end)

FakeAnimations:AddDropdown("FallAnimations", {
    Values = {"None", "Rthro", "Werewolf", "Zombie", "Ninja", "Toy", "Superhero", "OldSchool", "Cartoony", "Stylish", "Vampire"},
    Default = 1,
    Multi = false,
    Text = "Fall",
})

Options.FallAnimations:OnChanged(function()
    ChangeFallAnimHook = game:GetService("RunService").Stepped:Connect(function()
        if Options.FallAnimations.Value == "None" then
        elseif Options.FallAnimations.Value == "Rthro" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=2510195892"
        elseif Options.FallAnimations.Value == "Werewolf" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083189019"
        elseif Options.FallAnimations.Value == "Zombie" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
        elseif Options.FallAnimations.Value == "Ninja" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=656115606"
        elseif Options.FallAnimations.Value == "Toy" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
        elseif Options.FallAnimations.Value == "Superhero" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
        elseif Options.FallAnimations.Value == "OldSchool" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=5319839762"
        elseif Options.FallAnimations.Value == "Cartoony" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=742640026"
        elseif Options.FallAnimations.Value == "Stylish" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616134815"
        elseif Options.FallAnimations.Value == "Vampire" then
            lplr.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083443587"
        end
    end)
end)

CFrameSpeedTab:AddToggle("CFrameSpeedToggleFunny", {
    Text = "Enabled",
    Default = false,
    Tooltip = "Enable CFrame Speed",
})

Toggles.CFrameSpeedToggleFunny:OnChanged(function()
    Settings.Blatant.CFrameSpeed.Enabled = Toggles.CFrameSpeedToggleFunny.Value
end)

Toggles.CFrameSpeedToggleFunny:AddKeyPicker("CFrameSpeedKeyBind", {
    Default = "None",
    SyncToggleState = true,
    Mode = "Toggle",
    Text = "CFrame",
    NoUI = false,
})

CFrameSpeedTab:AddSlider("CFrameSpeedValue", {
    Text = "CFrame Speed Amount",
    Default = 1,
    Min = 1,
    Max = 5,
    Rounding = 2,
    Compact = false,
})

Options.CFrameSpeedValue:OnChanged(function()
    Settings.Blatant.CFrameSpeed.Value = Options.CFrameSpeedValue.Value
end)

FlyTab:AddToggle("FlyToggleFunny", {
    Text = "Enabled",
    Default = false,
    Tooltip = "Fly Enabled",
})

Toggles.FlyToggleFunny:OnChanged(function()
    if Toggles.FlyToggleFunny.Value == true then
        FlyLoop = game:GetService("RunService").RenderStepped:Connect(function()
            spawn(function()
                pcall(function()
                    local speed = Settings.Blatant.Fly.Value
                    local velocity = Vector3.new(0, 0, 0)
                    local UserInputService = game:GetService("UserInputService")
                    local flyUpwards = UserInputService:IsKeyDown(Enum.KeyCode.Space)
                    local flyDownwards = UserInputService:IsKeyDown(Enum.KeyCode.LeftShift) 
                    if UserInputService:IsKeyDown(Enum.KeyCode.W) then
                        velocity = velocity + (CurrentCamera.CoordinateFrame.lookVector * speed)
                    end
                    if UserInputService:IsKeyDown(Enum.KeyCode.A) then
                        velocity = velocity + (CurrentCamera.CoordinateFrame.rightVector * -speed)
                    end
                    if UserInputService:IsKeyDown(Enum.KeyCode.S) then
                        velocity = velocity + (CurrentCamera.CoordinateFrame.lookVector * -speed)
                    end
                    if UserInputService:IsKeyDown(Enum.KeyCode.D) then
                        velocity = velocity + (CurrentCamera.CoordinateFrame.rightVector * speed)
                    end

                    if flyUpwards then
                        velocity = velocity + (Vector3.new(0, 1, 0) * speed)
                    end
                    if flyDownwards then
                        velocity = velocity + (Vector3.new(0, -1, 0) * speed)
                    end
                    lplr.Character.HumanoidRootPart.Velocity = velocity
                    lplr.Character.Humanoid:ChangeState("Freefall")
                end)
            end)
        end)
    elseif Toggles.FlyToggleFunny.Value == false and FlyLoop then
        FlyLoop:Disconnect()
        lplr.Character.Humanoid:ChangeState("Landing")
    end
end)

Toggles.FlyToggleFunny:AddKeyPicker("FlyKeyBind", {
    Default = "None",
    SyncToggleState = true,
    Mode = "Toggle",
    Text = "Fly",
    NoUI = false,
})

FlyTab:AddSlider("FlyValue", {
    Text =  "Fly Amount",
    Default = 1,
    Min = 1,
    Max = 5,
    Rounding = 2,
    Compact = false,
})

Options.FlyValue:OnChanged(function()
    Settings.Blatant.Fly.Value = Options.FlyValue.Value * 30
end)


--// Light head funny thing
game:GetService("RunService").RenderStepped:Connect(function()
    if Settings.Visuals.Local.Light.Enabled then
        local player = game.Players.LocalPlayer
        local head = player.Character.Head
        local light = head:FindFirstChild("HeadLight")
        if not light then
            light = Instance.new("PointLight")
            light.Name = "HeadLight"
            light.Range = 20
            light.Parent = head
        end

        light.Brightness = Settings.Visuals.Local.Light.Strength
        light.Color = Settings.Visuals.Local.Light.Color
    else
        local player = game.Players.LocalPlayer
        local head = player.Character.Head
        local light = head:FindFirstChild("HeadLight")
        if light then
            light:Destroy()
        end
    end
end)

--// Nametag Funny thing
game:GetService("RunService").RenderStepped:Connect(function()
    if Settings.Visuals.Local.Nametag.Enabled then
        local player = game.Players.LocalPlayer
        local character = player.Character
        local head = character and character:FindFirstChild("Head")
        local billboard = head and head:FindFirstChild("NametagBillboard")
        
        if not billboard then
            billboard = Instance.new("BillboardGui")
            billboard.Name = "NametagBillboard"
            billboard.Size = UDim2.new(0, 100, 0, 50)
            billboard.StudsOffset = Vector3.new(0, 2, 0) 
            
            local textLabel = Instance.new("TextLabel")
            textLabel.Name = "NametagText"
            textLabel.Size = UDim2.new(1, 0, 1, 0)
            textLabel.BackgroundTransparency = 1
            textLabel.TextColor3 = Settings.Visuals.Local.Nametag.Color
            textLabel.Text = "   " .. player.Name .. "\n     |\n     |\n     V"
            textLabel.Font = Enum.Font.SourceSansBold
            textLabel.TextSize = 20
            textLabel.TextYAlignment = Enum.TextYAlignment.Top
            textLabel.TextTransparency = 0 
            textLabel.Parent = billboard
            billboard.Parent = head
        end

        local nametagText = billboard:FindFirstChild("NametagText")
        if nametagText then
            nametagText.TextColor3 = Settings.Visuals.Local.Nametag.Color
        end
    else
        local player = game.Players.LocalPlayer
        local character = player.Character
        local head = character and character:FindFirstChild("Head")
        local billboard = head and head:FindFirstChild("NametagBillboard")
        
        if billboard then
            billboard:Destroy()
        end
    end
end)

--// Create the fov circle
local FOVring = Drawing.new("Circle")
FOVring.Visible = Settings.Aimbot.Fov.Enabled
FOVring.Thickness = 1.5
FOVring.Radius = Settings.Aimbot.Fov.Radius
FOVring.Transparency = 1
FOVring.Color = Settings.Aimbot.Fov.Color
FOVring.Position = Vector2.new(workspace.CurrentCamera.ViewportSize.X / 2, workspace.CurrentCamera.ViewportSize.Y / 2)

--// Main functions

local function getAimKey()
    if Settings.Aimbot.Aimkey == "LMB" then
        return Enum.UserInputType.MouseButton1
    elseif Settings.Aimbot.Aimkey == "RMB" then
        return Enum.UserInputType.MouseButton2
    end
end

local lockedOnPlayer = nil
local function getMousePosition()
    local mouse = game.Players.LocalPlayer:GetMouse()
    return mouse.X, mouse.Y
end

local function calculateDelta(targetX, targetY, mouseX, mouseY)
    return targetX - mouseX, targetY - mouseY
end

local function applyShake()
    if Settings.Aimbot.Shake.Enabled then
        local shakeOffset = Vector3.new(
            math.random() * Settings.Aimbot.Shake.ShakeValue - Settings.Aimbot.Shake.ShakeValue / 2,
            math.random() * Settings.Aimbot.Shake.ShakeValue - Settings.Aimbot.Shake.ShakeValue / 2,
            math.random() * Settings.Aimbot.Shake.ShakeValue - Settings.Aimbot.Shake.ShakeValue / 2
        )
        workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame * CFrame.new(shakeOffset)
    end
end
local function FOVCHECK(Player)
    if FOVring.Visible == false then
        return true
    end

    local FOVCheck = FOVring.Radius

    if Player ~= LocalPlayer and Player.Character and Player.Character:FindFirstChild("Humanoid") and Player.Character.Humanoid.Health ~= 0 and Player.Character:FindFirstChild("LowerTorso") then
        local pos = CurrentCamera:WorldToViewportPoint(Player.Character.PrimaryPart.Position)
        local magnitude = (Vector2.new(pos.X, pos.Y) - Vector2.new(mouse.X, mouse.Y)).magnitude

        if magnitude < FOVCheck then
            FOVCheck = magnitude
            return true
        else
            return false
        end
    end
end
local function getClosestPlayer()
    local players = game:GetService("Players"):GetPlayers()
    local closestPlayer = nil
    local closestDistance = math.huge

    local mousePos = Vector2.new(getMousePosition())

    local function getDistance(point1, point2)
        return (point1 - point2).Magnitude
    end

    for i, player in pairs(players) do
        if FOVCHECK(player) then
            if player.Character and player.Character:FindFirstChild("Head") and player ~= game:GetService("Players").LocalPlayer then
                local pos, vis = workspace.CurrentCamera:WorldToViewportPoint(player.Character.Head.Position)
                if vis then
                    local ssHeadPoint = Vector2.new(pos.X, pos.Y)
                    local isSameTeam = player.Team == game:GetService("Players").LocalPlayer.Team

                    local distance = getDistance(ssHeadPoint, mousePos)

                    if Settings.Aimbot.Fov.Enabled and distance < Settings.Aimbot.Fov.Radius and (not Settings.Aimbot.Teamcheck or not isSameTeam) then
                        if distance < closestDistance then
                            closestPlayer = player
                            closestDistance = distance
                        end
                    elseif not Settings.Aimbot.Fov.Enabled and (not Settings.Aimbot.Teamcheck or not isSameTeam) then
                        if distance < closestDistance then
                            closestPlayer = player
                            closestDistance = distance
                        end
                    end
                end
            end
        end
    end

    if closestPlayer then
        return closestPlayer
    else
        return nil
    end
end

local currentTween = nil

game:GetService("UserInputService").InputBegan:Connect(function(input)
    if input.UserInputType == getAimKey() then
        if currentTween then
            currentTween:Cancel()
            currentTween = nil
        end

        if not Settings.Aimbot.Stickyaim then
            local closestPlayer = getClosestPlayer()
            if closestPlayer then
                lockedPlayer = closestPlayer
            end
        elseif lockedPlayer then
            lockedPlayer = nil
        end
    end
end)

game:GetService("UserInputService").InputEnded:Connect(function(input)
    if input.UserInputType == getAimKey() then
        if currentTween then
            currentTween:Cancel()
            currentTween = nil
        end
        lockedPlayer = nil
    end
end)

local function aimbotLogic()
    if Settings.Aimbot.Mode == "Third Person" then
        FOVring.Position = Vector2.new(getMousePosition())
    else
        FOVring.Position = Vector2.new(workspace.CurrentCamera.ViewportSize.X / 2, workspace.CurrentCamera.ViewportSize.Y / 2)
    end

    local targetPlayer = Settings.Aimbot.Stickyaim and stickyLockedPlayer or lockedPlayer

    if targetPlayer and Settings.Aimbot.Enabled then
        local cameraPos = workspace.CurrentCamera.CFrame.Position

        if targetPlayer.Character and targetPlayer.Character:FindFirstChild(Settings.Aimbot.Aimpart) then
            local aimPart = targetPlayer.Character:FindFirstChild(Settings.Aimbot.Aimpart)
            local partPos = aimPart.Position
            local velocity = aimPart.Velocity

            if Settings.Aimbot.Prediction.Enabled then
                partPos = partPos + velocity * Vector3.new(Settings.Aimbot.Prediction.PredValue, Settings.Aimbot.Prediction.PredValue, Settings.Aimbot.Prediction.PredValue)
            end

            if Settings.Aimbot.Distancecheck.Enabled then
                local distanceToTarget = (partPos - cameraPos).Magnitude
                if distanceToTarget > Settings.Aimbot.Distancecheck.Value then
                    if Settings.Aimbot.Stickyaim then
                        stickyLockedPlayer = nil
                        if currentTween then
                            currentTween:Cancel()
                            currentTween = nil
                        end
                    else
                        lockedPlayer = nil
                        if currentTween then
                            currentTween:Cancel()
                            currentTween = nil
                        end
                    end
                    return
                end
            end


            local newCameraCFrame = CFrame.new(cameraPos, partPos)

            if currentTween then
                currentTween:Cancel()
                currentTween = nil
            end

            if Settings.Aimbot.Stickyaim then
                aimKey = nil
            else
                aimKey = getAimKey()
            end

            local isAimKeyPressed = aimKey and game:GetService("UserInputService"):IsMouseButtonPressed(aimKey)

            if Settings.Aimbot.Stickyaim and not isAimKeyPressed then
                if Settings.Aimbot.Mode == "Third Person" then
                    local Vector = CurrentCamera:WorldToViewportPoint(partPos)
				    mousemoverel((Vector.X - game:GetService("UserInputService"):GetMouseLocation().X), (Vector.Y - game:GetService("UserInputService"):GetMouseLocation().Y))
                else
                    if Settings.Aimbot.Smoothness.Enabled then
                        currentTween = TweenService:Create(workspace.CurrentCamera, TweenInfo.new(Settings.Aimbot.Smoothness.SmoothnessValue, Enum.EasingStyle.Linear), {
                            CFrame = newCameraCFrame
                        })
                        currentTween:Play()
                    else
                        workspace.CurrentCamera.CFrame = newCameraCFrame
                    end
                end

                applyShake()
                return
            end

            if not Settings.Aimbot.Stickyaim or (Settings.Aimbot.Stickyaim and not isAimKeyPressed) then
                if Settings.Aimbot.Mode == "Third Person" then
                    local Vector = CurrentCamera:WorldToViewportPoint(partPos)
				    mousemoverel((Vector.X - game:GetService("UserInputService"):GetMouseLocation().X), (Vector.Y - game:GetService("UserInputService"):GetMouseLocation().Y))
                else
                    if Settings.Aimbot.Smoothness.Enabled and isAimKeyPressed then
                        currentTween = TweenService:Create(workspace.CurrentCamera, TweenInfo.new(Settings.Aimbot.Smoothness.SmoothnessValue, Enum.EasingStyle.Linear), {
                            CFrame = newCameraCFrame
                        })
                        currentTween:Play()
                    else
                        workspace.CurrentCamera.CFrame = newCameraCFrame
                    end
                end
            end

            applyShake()
        end

        if Settings.Aimbot.Alivecheck and targetPlayer.Character and targetPlayer.Character:FindFirstChild("Humanoid") then
            local humanoid = targetPlayer.Character:FindFirstChild("Humanoid")
            if humanoid.Health <= 0 then
                if Settings.Aimbot.Stickyaim then
                    stickyLockedPlayer = nil
                    if currentTween then
                        currentTween:Cancel()
                        currentTween = nil
                    end
                else
                    lockedPlayer = nil
                end
                return
            end
        end
    else
        if Settings.Aimbot.Stickyaim then
            stickyLockedPlayer = nil
            if currentTween then
                currentTween:Cancel()
                currentTween = nil
            end
        else
            lockedPlayer = nil
        end
    end
end

function aimbotGetClosestPlayer()
    local distance = Settings.Aimbot.Fov.Radius
    local zclosest

    for i, v in pairs(game.Players:GetPlayers()) do
        if v ~= lplr and v.Character and v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health > 0 and v.Character:FindFirstChild("HumanoidRootPart") then
            local pos = CurrentCamera:WorldToViewportPoint(v.Character.PrimaryPart.Position)
            local magnitude = (Vector2.new(pos.X, pos.Y) - Vector2.new(lplr:GetMouse().X, lplr:GetMouse().Y)).magnitude

            if magnitude < distance then
                zclosest = v
                distance = magnitude
            end
        end
    end

    return zclosest
end

--// Aspect ratio aka stretched res lo
local oldNewindex

oldNewindex = hookmetamethod(game, "__newindex", function(object, propertyName, propertyValue)
    if object == CurrentCamera and propertyName == "CFrame" then
        if Settings.Visuals.Local.AspectRatio.Enabled then
            propertyValue = propertyValue * CFrame.new(0, 0, 0, 1, 0, 0, 0, Settings.Visuals.Local.AspectRatio.Value, 0, 0, 0, 1)
        end
    end
    return oldNewindex(object, propertyName, propertyValue)
end)


--// Renderstepped for aimbot
game:GetService("RunService").RenderStepped:Connect(aimbotLogic)

local emojis = {"😀", "😄", "😊", "🎉", "🌞", "🌟", "🏆", "🎮", "🏰", "🌈", "🍎", "🍓", "🍕", "🍔", "🍟", "🍦", "🍩", "🍉", "🍒", "🍌", "🍇", "🍔", "🍟", "🌮", "🍕", "🍣", "🍔", "🍟", "🌭", "🍟", "🍖", "🍗", "🍤", "🍳", "🥐", "🍞", "🍗", "🍖", "🍔", "🍟", "🍕", "🍔", "🍟", "🍣", "🍣", "🍱", "🍛", "🍜", "🍝", "🍞", "🍮", "🍭", "🍬", "🍫", "🍿", "🍪", "🍩", "🍨", "🍧", "🍦", "🎂", "🍰", "🍮", "🍭", "🍬", "🍫", "🍿", "🍪", "🍩", "🍨", "🍧", "🍦", "🍺", "🍻", "🍷", "🍸", "🍹", "🍾", "🥂", "🥃", "🍴", "🍽️", "🥄", "🔪", "🍽️", "🍴", "🍽️", "🥄", "🔪", "🍽️", "🍴", "🍽️", "🥄", "🔪", "🎸", "🎺", "🎻", "🥁", "🎷", "🎹", "🎶", "🎵", "🎼", "🎧", "🎤", "🎸", "🎺", "🎻", "🥁", "🎷", "🎹", "🎶", "🎵", "🎼", "🎧", "🎤", "📷", "📸", "📹", "🎥", "🎬", "📺", "📻", "🎮", "🕹️", "🎲", "⚽", "🏀", "🏈", "⚾", "🎾", "🏐", "🏉", "🎱", "🎳", "🏏", "🏑", "🏒", "🏓", "🏸", "🥅", "⛳", "🏹", "🎣", "🥊", "🥋", "🥏", "🥅", "⛳", "🏹", "🎣", "🥊", "🥋", "🥏", "⛸️", "🎿", "⛷️", "🏂", "🏋️‍♀️", "🏋️‍♂️", "🤺", "⛸️", "🎿", "⛷️", "🏂", "🏋️‍♀️", "🏋️‍♂️", "🤺", "🏌️‍♀️", "🏌️‍♂️", "🏄‍♀️", "🏄‍♂️", "🚣‍♀️", "🚣‍♂️", "🏊‍♀️", "🏊‍♂️", "⛹️‍♀️", "⛹️‍♂️", "🏋️‍♀️", "🏋️‍♂️", "🚴‍♀️", "🚴‍♂️", "🚵‍♀️", "🚵‍♂️", "🤸‍♀️", "🤸‍♂️", "🤽‍♀️", "🤽‍♂️", "🤾‍♀️", "🤾‍♂️", "🏆", "🏅", "🎖️", "🥇", "🥈", "🥉"}

local Messages = Settings.Blatant.MessageSpammer.Message
local messageList = {}
local currentIndex = 1
local lastMessageTime = tick()

game:GetService("RunService").Heartbeat:Connect(function()
    if Settings.Blatant.MessageSpammer.Enabled then
        local currentTime = tick()
        local elapsedTime = currentTime - lastMessageTime

        if Settings.Blatant.MessageSpammer.Message ~= Messages then
            Messages = Settings.Blatant.MessageSpammer.Message
            messageList = {}

            for message in Messages:gmatch("([^,]+)") do
                table.insert(messageList, message)
            end
        end

        if elapsedTime >= 3 then
            local message = messageList[currentIndex]

            if message then
                sendMessage(message)
                currentIndex = currentIndex + 1

                if currentIndex > #messageList then
                    currentIndex = 1
                end

                lastMessageTime = currentTime
            end
        end
    end
end)

function sendMessage(message)
    local finalMessage = message

    if Settings.Blatant.MessageSpammer.UseEmojis then
        local randomEmojiIndex = math.random(1, #emojis)
        local emoji = emojis[randomEmojiIndex]
        finalMessage = finalMessage .. " " .. emoji
    end

    game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(finalMessage, "All")
end

--// Main CFrame speed
game:GetService("RunService").Heartbeat:Connect(function()
    if Settings.Blatant.CFrameSpeed.Enabled then
        if lplr.Character.Humanoid.MoveDirection.Magnitude > 0 then
            for i = 1, Settings.Blatant.CFrameSpeed.Value do
                lplr.Character:TranslateBy(lplr.Character.Humanoid.MoveDirection)
            end
        end
    end
end)


game:GetService("RunService").RenderStepped:Connect(function()
    FOVring.Visible = Settings.Aimbot.Fov.Enabled
    FOVring.Radius = Settings.Aimbot.Fov.Radius
    FOVring.Color = Settings.Aimbot.Fov.Color
end)

--// Config and shit
MenuGroup:AddButton("Unload Cheat", function()
    Library:Unload()
end)

MenuGroup:AddToggle("WatermarkEnabled", {
    Text = "Watermark",
    Default = true,
    Tooltip = "Watermark Enabled",
})

Toggles.WatermarkEnabled:OnChanged(function()
    Library:SetWatermarkVisibility(Toggles.WatermarkEnabled.Value)
end)

Library.ToggleKeybind = Options.MenuKeybind
ThemeManager:SetLibrary(Library)
SaveManager:SetLibrary(Library)
SaveManager:IgnoreThemeSettings()

Library:SetWatermark("Universal Aimbot and Esp made by Linemaster| " .. os.date(funny[math.random(1, #funny)], os.time()) .. day .. GetSubPrefix(day) .. os.date(second_string, os.time()))

SaveManager:SetIgnoreIndexes({"MenuKeybind"})

ThemeManager:SetFolder("AimbotAndEspFunny")
SaveManager:SetFolder("AimbotAndEspFunny/Configs")
SaveManager:BuildConfigSection(Tabs.UiSettings)
ThemeManager:ApplyToTab(Tabs.UiSettings)

MenuGroup:AddLabel("Menu bind"):AddKeyPicker("MenuKeybind", {
    Default = "Insert",
    NoUI = true,
    Text = "Menu keybind"
})

Library.ToggleKeybind = Options.MenuKeybind

Available Games

096-SCP-Scripts 1-Damage-Every-Second-Scripts 1-Every-Second-Scripts 1-Jump-Every-Second-Scripts 1-Money-Every-Click-Scripts 1-Win-Obby-Scripts 1%-FINISH-Scripts 2-Player-Millionaire-Tycoon-Scripts 2P-Wizzard-Tycoon-Scripts 3-2-1-Blast-Off-Simulator-Scripts 3008-Scripts 50-50-Pick-A-Door-Obby-Scripts 98%-Fail-Impossible-Glass-Bridge-Scripts A-0ne-Piece-Game-Scripts A-Dumb-Day-Scripts A-Dusty-Trip-Scripts A-Hero's-Destiny-Scripts A-One-Piece-Devil-Fruit-Scripts A-One-Piece-Game-Scripts A-Universal-Time-Scripts ABA-Scripts Ability-Wars-Scripts Abyssal-Scripts Admin-Guns-Scripts Admin-RNG-Scripts Admin-Simulator-Scripts Adopt-And-Raise-A-Baby-Scripts Adopt-And-Raise-A-Cute-Baby-Scripts Adopt-Me-Scripts Aeronautica-Scripts Afk-for-UGC-Scripts Aftons-Family-Diner-Scripts Age-Of-Hero-Scripts Age-Of-Hero's-Scripts Aggressive-Multiplayer-Scripts Aim-Trainer-Scripts Airplane-Simulator-Scripts Airport-Tycoon-Scripts Airsoft-FE-Scripts All-Of-Us-Are-Dead-Scripts All-Star-Tower-Defense-Scripts Allusions-Scripts Alo-Sanctuary-Scripts Alphabet-Lore-Race-Scripts Alternate-Battlegrounds-Scripts Altitorture-Scripts An-Infinite-Adventure-Scripts Anarchy-Arena-Scripts Animal-Evolution-Simulator-Scripts Animal-Race-Scripts Animal-Sim-Underwater-Scripts Animal-Simulator-Scripts Anime-Adventure-Scripts Anime-Adventures-Scripts Anime-Artifacts-Simulator-2-Scripts Anime-Battle-Arena-Scripts Anime-Battle-Simulator-Scripts Anime-Battlegrounds-Y-Scripts Anime-Battles-Simulator-Scripts Anime-Card-Battle-Scripts Anime-Catching-Simulator-Scripts Anime-Champions-Scripts Anime-Clash-Scripts Anime-Clicker-Fight-Scripts Anime-Clicker-Simulator-Scripts Anime-Combat-Simulator-Scripts Anime-Crossover-Defense-Scripts Anime-Defenders-Scripts Anime-Defense-Simulator-Scripts Anime-Destiny-Simulator-Scripts Anime-Dimension-Simulator-Scripts Anime-Dungeon-Fighters-Scripts Anime-Enemies-Simulator-Scripts Anime-Energy-Clash-Simulator-Scripts Anime-Evolution-Simulator-Scripts Anime-Fantasy-Scripts Anime-Fight-Next-Generation-Scripts Anime-Fighters-Scripts Anime-Fighters-Simulator-Scripts Anime-Fighting-Simulator-Scripts Anime-Fighting-Simulator-X-Scripts Anime-Fly-Race-Scripts Anime-Force-Simulator-Scripts Anime-Fruit-Simulator-Scripts Anime-Fusion-Tycoon-Scripts Anime-Heroes-Simulator-Scripts Anime-Hunters-Simulator-Scripts Anime-Idle-Simulator-Scripts Anime-Infinity-Simulator-Scripts Anime-Islands-Scripts Anime-Last-Stand-Scripts Anime-League-Scripts Anime-Legends-Scripts Anime-Lost-Simulator-Scripts Anime-Plush-Simulator-Scripts Anime-Power-Evolution-Scripts Anime-Power-Simulator-Scripts Anime-Punch-Simulator-Scripts Anime-Punching-Simulator-Scripts Anime-Racing-Clicker-Scripts Anime-Rising-Fighting-Scripts Anime-RNG-Rarities-Scripts Anime-RNG-Scripts Anime-Simulator-Scripts Anime-Smash-Simulator-Scripts Anime-Souls-Simulator-Scripts Anime-Speed-Race-Scripts Anime-Speed-Simulator-Scripts Anime-Spirits-Scripts Anime-Star-Simulator-Scripts Anime-Story-Scripts Anime-Street-Simulator-Scripts Anime-Strike-Simulator-Scripts Anime-Switch-Scripts Anime-Sword-X-Scripts Anime-Swords-Simulator-Scripts Anime-Tales-RELEASE-Scripts Anime-Tales-Simulator-Scripts Anime-Universe-Simulator-Scripts Anime-Vanguards-Scripts Anime-Warriors-Simulator-2-Scripts Anime-Weapon-Simulator-Scripts Anime-Word-Tower-Defense-Scripts AniPhobia-Scripts Aniverse-Scripts Anomic-Scripts Answer-Or-Die-Scripts Ants-Simulator-Scripts Apeirophobia-Scripts Apocalypes-Rising-2-Scripts Apocalypse-Tycoon-Scripts Aqua-Racer-Scripts Arcane-Lineage-Scripts Arcane-Odyssey-Scripts Arm-Wrestle-Simulator-Scripts Arm-Wrestling-Simulator-Scripts Armored-Patrol-Scripts Arsenal-Scripts Assassin-Scripts Astro-Renaissance-Scripts Attack-On-Titan-Evolution-Scripts Attack-on-Titan-Revolution-Scripts Attack-On-Titan-Vengeance-Scripts Aura-Craft-Scripts Aura-Dice-RNG-Scripts Auto-Rap-Battles-Scripts BABY-BOBBYS-DAYCARE-Scripts Backpacking-Scripts Backrooms-GMod-Map-Scripts Backrooms-Morphs-Scripts Backrooms-Race-Clicker-Scripts Bad-Business-Scripts Baddies-Scripts Ball-And-Axe-Scripts Balloon-Simulator-Scripts Balls-Rarity-Factory-Scripts Banana-Eats-Scripts Banning-Simulator-X-Scripts Barry-Prison-Run-Scripts Barry's-Prison-Run-2-Scripts Barrys-Prison-Run-Scripts Baryon-Scripts Base-Battles-Scripts Base-Raiders-Scripts Basically-FNF-Scripts Basketball-Legends-Scripts Bathroom-Tower-Defense-Scripts Bathroom-Tower-Defense-X-Scripts Battle-Pet-TD-Scripts Be-A-Dad-And-Get-Milk-Sim-Scripts be-a-dad-and-get-milk-simulator-Scripts Be-A-Hero-Scripts Be-A-Parkour-Ninja-Scripts Be-A-Spider-Tycoon-Scripts Be-a-Tornado-Scripts Be-Crushed-By-A-Speeding-Wall-Scripts Be-Dead-Forever-Simulator-Scripts Be-NPC-or-Die-Scripts Beat-Up-Dummies-Simulator-Scripts Become-a-hacker-to-prove-dad-wrong-tycoon-Scripts become-a-painter-and-prove-mom-wrong-tycoon-Scripts BedWars-Scripts Bee-Swarm-Simulator-Scripts Bee-Tycoon-Scripts beg-to-escape-poverty-Scripts Bellu-Piece-Scripts Bendy-and-the-ink-Machine-Scripts Berry-Avenue-RP-Scripts Better-Music-Scripts Beyondland-Scripts BIC-DrawPlanet-Scripts Big-Battles-Scripts Big-Blox-Brazil-Scripts Big-Brain-Simulator-Scripts Big-Lifting-Simulator-X-Scripts BIG-Paintball-Scripts Bike-Race-Clicker-Scripts Billionaire-Empire-Scripts Billionaire-Simulator-2-Scripts Bitcoin-Miner-Scripts Bizarre-Day-Modded-Rebooted-Scripts Black-Adam-Experience-Scripts Black-Grimoire-Odyssey-Scripts Blackhawk-Rescue-Mission-5-Scripts Blackrooms-Race-Clicker-Scripts Blade-Ball-Scripts Blade-Of-Chance-Scripts Blade-Quest-Scripts Blade-Simulator-Scripts Blade-Slayer-Scripts Blade-Throwing-Simulator-Scripts Blades-RNG-Scripts Bleeding-Blades-Scripts Blending-Simulator-2-Scripts Blob-Simulator-Scripts Block-Eating-Simulator-Scripts Block-Mine-Scripts Block-Miner-Simulator-Scripts Block-Survivor-Scripts Blocks-n-Props-Scripts BlockWars-Scripts Blood-And-Iron-Scripts Blox-Fruits-Scripts Blox-Hunt-Scripts Bloxburg-Scripts Bloxy-Bingo-Scripts Blue-Heater-Scripts boat-ride-into-a-better-life-Scripts Bomb-Click-Mine-Scripts Bomb-Tag-Survival-Scripts Booga-Booga-REBORN-Scripts Booga-Booga-Scripts Boss-Fighting-Simulator-Scripts BotClash-Simulator-Scripts Bow-Simulator-Scripts Box-Simulator-Scripts BOXING-BETA-Scripts Boxing-Clicker-Simulator-Scripts Boxing-Fighters-Simulator-Scripts Boxing-Friends-Simulator-Scripts Boxing-League-Scripts Boxing-Simulator-Scripts Braveorder-Scripts brawl-2-Scripts Break-In-2-Scripts Break-In-Scripts Break-Wall-Simulator-Scripts Breaking-Point-Scripts Bro-Rescue-Simulator-Scripts Broken-Bones-4-Scripts Broken-Bones-IV-Scripts Brookhaven-RP-Scripts Bubble-Gum-Clicker-Scripts Bubble-Gum-Clicker-X-Scripts Bubble-Gum-Haven-Scripts Bubble-Gum-Legends-Scripts Bubble-Gum-Simulator-Scripts Build-A-Boat-For-Treasure-Scripts Build-a-Boat-with-Blocks-Scripts Build-a-Bridge-Simulator-Scripts Build-and-Battle-Scripts Build-And-Survive-Scripts Build-To-Survive-Scripts Build-to-Survive-the-Booms-Scripts Build-To-Survive-The-Robots-Scripts Bulked-Up-Scripts Bullying-Scripts Burn-Stuff-And-Get-Rich-Scripts Business-Tycoon-Scripts Busy-Business-Scripts Butterfly-Race-Scripts Button-Infinity-Scripts Button-Simulator-2023-Scripts buy-your-friend-back-tycoon-Scripts Cabin-Crew-Simulator-Scripts Cacophony-Scripts Camping-Scripts Candy-Clicker-Simulator-Scripts Candy-Collecting-Simulator-Scripts Car-Crash-System-Scripts Car-Crash-Test-Scripts Car-Crushers-2-Scripts Car-Dealership-Tycoon-Scripts Car-Factory-Tycoon-Scripts Car-Mechanic-Tycoon-Scripts Car-Repair-Simulator-Scripts Carry-Me-Scripts Carry-People-Simulator-3-Scripts Cars-Car-Driving-Ultimate-Scripts Cart-Car-Ride-Into-GigaNoob-Scripts Cart-Ride-Around-Nothing-Scripts Cart-Ride-Delivery-Service-Scripts Cart-Ride-Into-Rdite-Scripts Cart-Ride-Race-Scripts Cart-Ride-Tycoon-2-Scripts Cart-Ride-Tycoon-Scripts Cartoon-Network-Game-On-Scripts Case-Clicker-Scripts Casual-Stock-Scripts Cat-Piece-Scripts Chain-Scripts Chainsaw-Man-Scripts Chainsaw-Man-X-Scripts Champions-TD-Scripts ChangiVerse-Scripts CHAOS-Scripts Chechnya-1994-Scripts Cheese-Escape-Scripts Cheese-Factory-Tycoon-Scripts Cheese-TD-Scripts Chest-Hero-Simulator-Scripts Chest-Simulator-Scripts ChicBlocko-Scripts Chill-Obby-Scripts Cirque-Du-Soleil-Tycoon-Scripts City-Life-Scripts Classroom-Simulator-Scripts Claw-Machine-Master-Scripts Click-To-Build-Simulator-Scripts Clicker-Fighting-Simulator-Scripts Clicker-League-Scripts Clicker-Madness-Scripts Clicker-Mining-Simulator Clicker-Mining-Simulator-Scripts Clicker-Party-Simulator-Scripts Clicker-Run-Scripts Clicker-Simulator-Scripts Clicker-Wars-Simulator-Scripts Clicking-Simulator-Scripts Climb-1000-Stairs-Scripts Climb-2000-Stairs-to-VIP-Obby-Scripts Climb-Race-Simulator-Scripts Climb-Rocks-to-VIP-Obby-Scripts Climb-Wall-For-VIP-Obby-Scripts Clip-It-Scripts Clone-Game-Scripts Clone-Kingdom-Tycoon Clone-Kingdom-Tycoon-Scripts Clone-Run-Scripts Clone-Tycoon-2-Scripts Close-your-Eyes-Scripts Closest-Build-Wins-Scripts Clover-City-Scripts Coal-Miner-Tycoon-2-Scripts Cobra-Kai-Karate-Scripts Coffee-Tsunami-Scripts Coins-Hero-Simulator-Scripts Collect-All-Pets-Scripts Collect-Stars-for-UGC-Scripts Colony-Survival-Scripts Color-Block-Scripts Color-Or-Die-Scripts Color-Race-Scripts Color-Run-Scripts Combat-Warriors-Scripts Contact-A-888-Scripts Control-Army-Scripts Cook-Burgers-but-with-100-players-Scripts Cook-Burgers-Scripts Cornerstone-Arcade-Scripts Corsair-Land-Scripts Coruscant-RP-Scripts Counter-Blox-Reimagined-Scripts Counter-Blox-Scripts Country-Collectors-Scripts Countryball-World-Scripts Craft-Blox-Scripts Craft-Factory-Scripts Craftwars-Scripts Crate-Opening-Incremental-Scripts CRAZY-Scripts Creatures-Of-Sonaria-Scripts Creeper-Chaos-Scripts Creeper-Survival-Scripts Crewmates-Scripts Criminality-Scripts Crocs-World-Minigames-Scripts Crop-Farming-Incremental-Scripts Crusaders-Heaven-Scripts Crying-Simulator-Scripts Crypto-Tycoon-Scripts Cube-Combination-Scripts Cursed-Arena-Scripts Cursed-Islands-Scripts Custom-Duels-Scripts Custom-PC-Tycoon-Scripts D-DAY-Scripts Da-Backrooms-Scripts Da-Hood-Aim-Trainer-Scripts Da-Hood-Scripts Dam-Tycoon-Scripts Dark-Life-Scripts Daybreak-Scripts Daycare-Center-Scripts DBZ-Final-Stand-Scripts Dead-Ball-Scripts Deadlift-Simulator-Scripts Deadline-Scripts Deadly-Sins-Retribution-Scripts Dealership-Tycoon-Cars-Scripts Death-Academy-Online-Scripts Death-Ball-Scripts Decaying-Winter-Scripts Deflect-Scripts Dem's-Upgrade-Tree-Scripts Demon-Fall-Scripts Demon-Piece-Scripts Demon-Slayer-Midnight-Sun-Scripts Demon-Soul-Simulator-Scripts Demon-Warriors-Scripts Demonfall-Scripts Destroy-And-Conquer-Scripts Destroy-The-Neighborhood-Scripts Destroying-Walls-Simulator-Scripts Destruction-Game-Scripts Destruction-Simulator-Scripts Devas-of-Creation-Scripts di-makatulog-Scripts Dig-To-China-Scripts dingus-Scripts Dino-Island-Tycoon-Scripts Dino-Tycoon-Scripts Dinosaur-Simulator-Scripts Dominus-Lifting-Simulator-Scripts DONT-GET-SNIFFED-Scripts DONT-SNIFF-IT-Scripts Dont-Stop-Obby-Scripts Doodle-Word-Scripts Doomspire-Brickbattle-Scripts DOORS-Race-Clicker-Scripts Doors-Race-Script Doors-Race-Scripts Doors-Scripts Doors-Story-Scripts Double-Down-Scripts Double-Jump-Obby-Scripts Dragon-Adventures-Scripts Dragon-Ball-Final-Remastered-Scripts Dragon-Ball-Rage-Scripts Dragon-Ball-Simulator-Scripts Dragon-Ball-Tycoon-Scripts Dragon-Blox-Scripts Dragon-Race-Scripts Dragon-Soul-Hunter-Scripts Dragon-Soul-Scripts Dragon-Warrior-Simulator-Scripts Dragonball-Ultimate-Clash-2-Scripts Draw-Obby-Scripts Dress-to-Impress-Scripts Drift-Paradise-Scripts Drive-Cars-Down-A-Hill-Scripts Drive-World-Scripts Driving-Empire-Scripts Driving-Simulator-Scripts Dungeon-Quest-Scripts Dunking-Race-Scripts Dunking-Simulator-Scripts Easy-Color-Switch-Obby-Scripts Easy-Fun-Obby-Scripts EASY-Glass-Bridge-Scripts Easy-Grow-Obby-Scripts Easy-Jump-Scripts Easy-Obby-Scripts Easy-Pet-Obby-Script Easy-Race-Clicker-Scripts Easy-Stud-Jump-Obby-Scripts Easy-Stud-Jumps-Obby-Scripts Easy-Stud-Walls-Jump-Obby-Scripts Eat-Blobs-Simulator-Scripts Eat-Same-Color-Food-Scripts eat-sand-Scripts Eat-Slime-to-Grow-Huge-Scripts Eat-Slimes-to-Grow-Huge-Scripts Eat-the-World-Scripts Eating-Battle-Simulator-Scripts Eating-Simulator-Scripts Eclipsis-Scripts Edward-The-Man-Eating-Train-Scripts Egg-Empire-Scripts Egg-Tree-Incremental-Scripts EGOIST-Scripts Electric-State-DarkRP-Scripts Elemental-Dungeon-Scripts Elemental-Powers-Tycoon-Scripts Emergency-Hamburg-Scripts Emergency-Response-Scripts Encounters-Scripts Endless-Parkour-Scripts Energy-Assault-Scripts Enigmatic-Trollverse-Scripts Entry-Point-Scripts Epic-Army-Battles-Scripts Epic-Minigames-Scripts Era-Of-Althea-Scripts ESCAPE-IPAD-KID-Scripts Escape-Papa-Pizza's-Pizzeria-Scripts Escape-Room-Scripts Escape-Running-Head-Scripts Escape-The-Dungeon-Obby-Scripts Escape-The-World-Obby-Scripts Eternal-Craftwars-Scripts Eternal-Piece-Scripts Evade-Scripts Event-RNG-Scripts Everest-Climbing-Roleplay-Scripts Every-Click-Get-1-Jump-Scripts Every-One-Second-Get-1-Size-Scripts Every-Second-1-Ki-In-DBZ-Scripts Every-Second-Get-1-Scripts Every-Second-Stud-Jumps-Obby-Scripts Every-Second-You-Get-1-Health-Scripts Every-Second-You-Get-1-HP-Scripts Every-Second-You-Get-1-Jump-Power-Scripts Every-Second-You-Get-1-Muscle-Scripts Every-Second-You-Get-1-Points-Scripts Every-Second-You-Get-1-Punch-Scripts Every-Second-You-Get-1-Scripts Every-Second-You-Get-1-Speed-But-Youre-On-a-Bike-Scripts Every-Second-You-Get-1-WalkSpeed-Scripts Every-Second-You-Get-Richer-Scripts Every-Second-You-Get-Smarter-Scripts Every-Second-You-Get+1-Muscle-Scripts Everyday-Car-Driving-Scripts Eviction-Notice-Scripts Executors Expedition-Antarctica-Scripts Explosive-Wall-Simulator-Scripts Ez-Dev-Scripts Fabled-Legacy-Scripts Facility-Lockdown-Scripts Facility-Of-Redemption-Scripts Faction-Defense-Tycoon-Scripts Factory-RNG-Scripts Fall-Of-Hell-Scripts Fantastic-Frontier Fantastic-Frontier-Scripts Farm-Factory-Tycoon-Scripts Farm-for-Fun-Scripts Fart-In-A-Box-Scripts Fast-Lifting-Simulator-Scripts Fat-Race-Clicker-Scripts Fat-Race-Scripts Fat-Roll-Race-Scripts Fat-Simulator-Scripts feed-the-noob-like-crazy-Scripts Feed-The-Noob-Tycoon-Scripts FEEDING-TRASH-TO-RICH-PEOPLE-TYCOON-Scripts Feet-Simulator-Scripts Fencing-Scripts Festival-Tycoon-Scripts Field-Trip-Z-Scripts FIFA-WORLD-Scripts Find-the-Auras-Scripts Find-The-Family-Guy-Scripts Find-The-Floppa-Morphs-Scripts Find-the-Foods-Scripts Find-The-Markers-Scripts Find-The-Pau-Scripts Find-The-Plugs-Scripts Find-The-Simpsons-Scripts Find-The-Sonic-Morphs-Scripts Fire-Force-Online-Scripts Fireball-Punching-Simulator-Scripts Firework-Simulator-Scripts Fish-A-Friend-Scripts Fishing-Frenzy-Simulator-Scripts Fishing-Simulator-Scripts FiveDuels-Scripts Flag-Wars-Scripts Flappy-Bird-Race-Scripts Flappy-Clicker-Scripts Flee-The-Facility-Scripts Flex-Fight-Scripts Flex-Your-Account-Age-Scripts Fling-Champions-Scripts Fling-Things-And-People-Scripts Flood-Escape-2-Scripts Floor-2-but-you-can-Spawn-Entitys-Scripts Fly-Race-Scripts Flying-Boot-Race-Simulator-Scripts Fnaf-Five-Nights-Simulator-Scripts FNAF-Scripts Foblox-Scripts Football-Duels-Scripts Football-Fusion-2-Scripts Football-RNG-Scripts Formula-Apex-Scripts Fortblox-Scripts Framed-Scripts FREE-ADMIN-Scripts Free-Boombox-Scripts Free-Hatchers-Scripts Free-Owner-Admin-Scripts Friday-Night-Bloxxin-Scripts Frog-Simulator-Scripts Froggie-Pond-Tycoon-Scripts FRONTLINES-Scripts Fruit-Battlegrounds-Scripts Fruit-Seas-Scripts Fruit-Warriors-Scripts Fruits-Tower-Defense-Scripts Fundamental-Paper-Education-Scripts Funky-Friday-Scripts Furry-Infection-Scripts Games-Unite-Testing-Place-Scripts GARENA-FREE-FIRE-MAX-Scripts Gaster-Blaster-Battles-Scripts Gem-Simulator-Scripts Genei-Fight-Simulator-Scripts generic-roleplay-gaem-Scripts Get-Fat-And-Roll-Race-Scripts get-hit-by-a-car-simulator-Scripts Get-Huge-Simulator-Scripts Get-Richer-Every-Second-Scripts Get-To-The-Top-Scripts Giant-Simulator-Scripts Giant-Survival-Scripts Giga-Mansion-Tycoon-Scripts Givenchy-Beauty-House-Scripts Glide-Race-Scripts Glitch-Obby-Scripts Glory-Kill-Testing-Scripts Go-Kart-Race-Simulator-Scripts Go-to-Jail-and-make-Friends-Scripts Go-To-Jail-Make-Friends-To-Escape-Scripts Goal-Clicker-Scripts Goal-Kick-Simulator-Scripts GOD-TYCOON-Scripts Gods-Will-Scripts Gojo-Vs-Toji-Ability-Scripts Good-Or-Bad-Obby-Scripts Got-Eaten-Scripts Grand-Piece-Online-Scripts Grand-Piece-Scripts Granny-Retro-Scripts Granny-Scripts GREAT-SCHOOL-BREAKOUT-Scripts Great-Sword-Simulator-Scripts Green-Light-Red-Light-Scripts Greenville-Scripts Grimace-Race-Scripts GRIMACE-Scripts Grimoire-Era-Scripts Grimoires-Era-Scripts GRUMPY-GRAN-Scripts Guerra-De-Torres-Scripts Guess-the-drawing-Scripts Gumball-Factory-Tycoon-Scripts Gun-Ball-Scripts Gun-Fight-Arena-Scripts Gun-Simulator-Scripts Gunfight-Arena-Scripts Gym-League-Scripts Gym-Tycoon-Scripts Hades-RNG-Scripts Happy-Land-Scripts Hard-Time-Scripts Haunted-Town-Scripts Head-Fly-Race-Scripts Head-Punch-Simulator-Scripts Heaven-Stand-Scripts Heist-Tycoon-Scripts Heroes-Battleground-Scripts Heroes-Battlegrounds-Scripts Hide-And-Seek-Extreme-Scripts Hide-And-Sneak-Scripts High-School-Life-Scripts Higher-Jump-Every-Second-Scripts Highway-Rush-Scripts Hold-People-The-Game-Scripts Hole-Fall-Simulator-Scripts Home-Run-Simulator-Scripts Homework-Lifting-Simulator-Scripts Homework-Printing-Simulator-Scripts Homework-Shedding-Simulator-Scripts homework-shredding-simulator-Scripts Hood-Arena-Scripts Hood-Customs-Scripts Hood-Duels-Scripts Hood-Modded-Scripts Hoop-Simulator-Scripts Hoops-Scripts Hoopz-Scripts Horrific-Housing-Scripts Horror-RNG-Scripts Horrors-RNG-Scripts Horse-Race-Simulator-Scripts Horse-Racing-Club-Scripts Hospital-Tycoon-Scripts Hotel-Elephant-Scripts Hotel-Scripts HOURS-Scripts How-Far-Can-You-Backflip-Scripts How-Far-Can-You-Fly-Scripts How-Far-Can-You-Slide-Scripts How-Far-Can-You-Throw-Scripts Human-Canon-Scripts Hungry-Pig-Scripts Hunter-X-Athena-Scripts Hyper-Realistic-CSGO-Guns-Scripts Idle-Heroes-Simulator-Scripts IHeartLand-Music-Tycoon-Scripts IKEA-the-Co-worker-Scripts Im-The-King-Of-School-Scripts Imposible-Ladder-Climb-Obby-Scripts Impossible-Glass-Bridge-Obby-Scripts Impossible-Glass-Bridge-Scripts Impossible-Ladder-Climb-Obby-Scripts Impossible-Obby-Scripts Impossible-Squid-Game-Glass-Bridge-Scripts In-Plain-Sight-2-Scripts Inazuma-Rebirth-Scripts Incremental-Adventures-Scripts Infectious-Smile-Scripts Infinite-Item-Simulator-Scripts Infinite-Rarities-Scripts Infinite-Tower-Tycoon-Scripts Insane-Elevator-Scripts Interminable-Rooms-Scripts Invade-Scripts InVisions-Web-Verse-Scripts Iron-Man-Simulator-2-Scripts Islands-Scripts Isle-Scripts Item-Asylum-Scripts Jailbreak-Scripts Jenga-Scripts Jujutsu-Kaizen-RP-Scripts Jujutsu-Legacy-Scripts Jujutsu-Scripts Jujutsu-Shenanigans-Scripts Jukes-Tower-of-Hell-Scripts Jump-Clicker-Scripts Jump-Higher-Per-Second-Scripts Jump-Race-Scripts Jumping-Simulator-Scripts Kaiju-Paradise-Experimental-Scripts Kaiju-Paradise-Scripts Kaizen-Scripts Kamehameha-Simulator-Scripts Karate-Scripts Kengun-OnlineScripts Keys-Scripts Kick-Off-Scripts Kickball-Scripts Kill-Monster-Simulator-Scripts Kill-Monsters-to-Save-Princess-Scripts Kill-To-Save-Anime-Girl-Scripts Kill-To-Save-Anime-Girl-Simulator-Scripts Killstreak-Chaos-Scripts King-Legacy-Scripts King-of-Hill-Scripts King-of-The-Hill-Scripts Kingdom-Life-Scripts Kitty-Scripts KJ-Arena-Scripts Knife-Ability-Test-Scripts Knife-Simulator-Scripts Knife-Strife-Scripts Knockout-Party-Scripts Knockout-Simulator-Scripts Kohaú-Hibachi-Restaurant-Scripts Korrupt-Zombies-Scripts Krush-PvP-Scripts Last-to-Leave-Scripts Last-to-Score-Loses-Scripts Launch-Into-Space-Simulator-Scripts Legend-Of-Heroes-Simulator-Scripts Legend-of-Speed-Scripts Legend-Piece-Scripts Legendary-Tapping-Scripts Legends-Battlegrounds-Scripts Legends-Of-Speed-Scripts Legends-Re-Written-Scripts Lethal-Tower-Defense-Scripts Lets-Party-Gear-Testing-Edition-Scripts Liberty-Island-Tycoon-Scripts Life-In-Prison-Scripts Life-Sentence-Scripts Lift-Legends-Simulator-Scripts Lifting-Simulator-Scripts Lifting-Titans-Scripts Lightsaber-Arena-Scripts Limited-Jumps-Scripts Limited-Time-Scripts Limitless-Purple-Scripts Little-World-Scripts live-in-a-back-alley-Simulator-Scripts Livetopia-Scripts Lobotomy-Clicker-Scripts Longest-Answer-Win-Scripts Lookout-Battle-Scripts Loomain-Legacy-Scripts Loooptopia-Scripts Lost-Kingdom-Tycoon-Scripts Lost-Rooms-Scripts Lucky-Battlegrounds-Scripts Lucky-Blocks-Battlegrounds-Scripts Lumber-Legends-Simulator-Scripts Lumber-Tycoon-2-Scripts Lumberjack-Simulator-Scripts Mad-City-Chapter-2-Scripts Mad-City-Scripts Mage-Tycoon-Scripts Magic-Champions-Scripts Magic-Clicker-Scripts Magic-RNG-Scripts Magic-Tappers-Scripts Magnet-Simulator-2-Scripts Magnet-Simulator-Scripts Magnetic-Simulator-Scripts Make-A-Cake-Scripts Make-It-Louder-Scripts Make-Roblox-Games-Scripts make-tixtoks-to-escape-school-tycoon-Scripts making-memes-in-your-basement-at-3-AM-tycoon-Scripts making-scam-calls-to-save-your-bf-Scripts Mall-Tycoon-Scripts Mansion-Scripts Maple-Hospital-Scripts Marble-Rail-Scripts Mars-Base-Tycoon-Scripts Marvellous-Playground-Scripts Masters-Difficulty-Chart-Obby-Scripts Math-Answer-or-Die-Scripts Math-Boxing-Scripts Math-Obby-Scripts Math-Wall-Simulator-Scripts Max-Mara-Coats-Adventure-Scripts Max-Speed-Scripts Mechanical-Ascension-X-Scripts Meepcity-Scripts Mega-Easy-Obby-Scripts Mega-Fun-Obby-Scripts Mega-Mansion-Tycoon-Scripts Mega-Marble-Run-Pit-Scripts Mega-Parkour-Obby-Scripts Meme-Merger-Scripts Meme-Sea-Scripts Merge-Droppers-Scripts Merge-Simulator-Scripts Mic-Up-Scripts Michael's-Zombies-Scripts Michaels-Zombies-Scripts Military-Facility-Tycoon-2-Scripts Military-Simulator-Scripts Military-Tycoon-Scripts Military-War-Tycoon-Scripts Milk-Tycoon-Scripts Millionaire-Empire-Tycoon-Scripts Mine-Blocks-Simulator-Scripts Mine-Racer-Scripts Miner-Merge-Tycoon-Scripts Minercave-Scripts MinerCrafts-Scripts Miners-Haven-Scripts MinerShaft-Scripts Mining-Clicker-Simulator-Scripts Mining-Factory-Tycoon-Scripts Mining-Simulator-2-Scripts Minion-Simulator-Scripts Mission-Mars-Scripts MM2-Scripts Mo's-Academy-Scripts Mob-Punch-Simulator-Scripts Mobile-Executors Mobile-Scripts Mobile-Sword-Fight-Scripts Money-Clicker-Inc-Scripts Money-Clicker-Simulator-Scripts Money-Grab-Simulator-Scripts Money-Roll-Simulator-Scripts Money-Simulator-X-Scripts Money-Simulator-Z-Scripts Money-Tycoon-Scripts Monkey-Tycoon-Scripts Monster-Battle-Simulator-Scripts Monster-Hunt-Simulator-Scripts Monster-Wall-Simulator-Scripts Motel-Simulator-Scripts Motorcycle-Mayhem-Scripts Motorcycle-Race-Scripts Mount-Of-The-Gods-Scripts Mow-My-Lawn-2-Scripts Mow-The-Lawn-Scripts Mow-The-Lown-Scripts Mowing-Simulator-Scripts Murder-Mystery-2-Scripts Murder-Party-Scripts Murder-Vs-Baby-Scripts Murderers-VS-Sheriffs-Duels-Scripts Murderers-Vs-Sheriffs-scripts Murim-Cultivation-Scripts Muscle-Legends-Scripts Muscle-Race-Clicker-Scripts Mushroom-Race-Scripts My-Avatar-Shop-Scripts My-Hello-Kitty-Cafe-Scripts My-Hero-Mania-Scripts My-Hood-Scripts My-Prison-Scripts My-Restaurant-Scripts My-School-Tycoon-Scripts Mystery-Clickers-Scripts Naruto-But-Every-Second-1-Chakra-Scripts Nation-Roleplay-2-Scripts Natural-Disaster-Survival-Scripts Natural-Disaster-Survival-with-Free-Items-Scripts Naval-Warfare-Scripts Ncrafts-Hangout-Scripts NCT-127-World-Scripts Nen-Fighting-Simulator-Scripts Neo-Soccer-League-Scripts Neo-Warfare-X-Scripts Never-Ending-Cart-Ride-Scripts Next-Doors-Scripts NGU CLICKER SIMULATOR-Scripts Night-Light-Scripts Nightlight-Scripts Ninja-Legends-2-Scripts Ninja-Legends-Scripts Ninja-Storm-Simulator-Scripts Ninja-Tycoon-Scripts No-Jumping-Difficulty-Chart-Obby-Scripts NO-SCOPE-ARCADE-Scripts No-Scope-Sniping-Scripts NO-STOP-Obby-Scripts Noob-Army-Tycoon-1-Scripts Northside-Chicago-Scripts Notoriety-Scripts Nuclear-Bomb-Testing-Facility-RP-Scripts Nuke-Race-Simulator-Scripts Nuke-Simulator-Scripts Nuke-Site-Scripts Oaklands-Scripts Obby-But-You-Are-Color-Blind-Scripts Obby-But-You-Can't-Jump-Scripts Obby-But-You-Cant-Jump-Scripts Obby-but-you-have-a-long-Nose-Scripts Obby-But-You're-A-Ball-Scripts Obby-But-You're-A-CUBE-Scripts Obby-but-you're-a-Pop-Scripts Obby-But-Your-On-A-Bike-Scripts Obby-but-youre-a-bird-Scripts obby-but-youre-a-poop-Scripts Obby-But-Youre-A-Potato-Scripts Obby-But-Youre-On-A-Bike-Scripts Obby-But-Youre-on-a-Jetpack-Scripts OFF-Tycoon-Scripts Official-Russian-Alphabet-Lore-RP-Scripts Ohio-Scripts Oil-Warfare-Tycoon-Scripts Old-A-Bizarre-Day-Scripts oMega-Obby-675-Stages-Scripts oMega-Obby-700-Obby-Scripts Omega-Obby-Scripts Omini-X-Scripts One-Blocks-Every-Second-Scripts One-Fruit-Scripts One-Fruit-Simulator-Scripts One-Piece-Battles-Scripts One-Piece-Legendary-Scripts One-Punch-Fighters-Simulator-Scripts One-Punch-Hero-Scripts One-Punch-Ultimate-Scripts Online-Business-Simulator-2-Scripts Only-Up-Blox-Scripts Onslaught-Public-Dev-Server-Scripts OOF-Tycoon-Scripts OP-Battleground-Scripts OP-Battlegrounds-Scripts OP-NINJA-SIMULATOR-Scripts Operations-Siege-Scripts Ore-Miners-Scripts Outlaster-Scripts Overhead-Press-Simulator-Scripts Paintball-Wars-Scripts Palm-Slap-Friends-Simulator-Scripts Pancakes-Wall-Hop-Difficulty-Scripts Parkour-Scripts Pass-The-Bomb-Scripts Paths-To-Immortality-Scripts Periastron-Stars-Scripts Peroxide-Scripts Pet-Catchers-Scripts Pet-Clicker-Simulator-Reborn-Scripts Pet-Clicking-Simulator-Scripts Pet-Crafting-Simulator-Scripts Pet-Legends-2-Scripts Pet-Merge-Scripts Pet-Mining-Simulator-Scripts Pet-Quest-Scripts Pet-Rift-Scripts Pet-Simulator-2-Scripts Pet-Simulator-99-Scripts Pet-Simulator-X-Scripts Pet-Trading-Card-Simulator-Scripts Pet-Zoo-Tycoon-Scripts Phantom-Ball-Scripts Phantom-Forces-Scripts Phenom-Scripts Piano-Keyboard-Scripts Pick-A-Side-Scripts Pickaxe-Mining-Simulator-Scripts Pickaxe-Simulator-Scripts Piece-Adventures-Simulator-Scripts Piece-X-Tycoon-Scripts Pig-64-Scripts Piggy-Scripts Pilfering-Pirates-Scripts Pilgrammed-Scripts Pillow-Fight-Simulator-Scripts Pinewood-Computer-Core-Scripts Pirate-Legacy-Scripts Pirate's-Dream-Scripts Pistol-1V1-Scripts Pixel-Incremental-Scripts Pixel-Piece-Scripts Pizzeria-Tycoon-Scripts Placer-Scripts Plane-Crash-Physics-2-Scripts Plane-Crazy-Scripts Planet-Crash-Physics-Scripts Planet-Destroyers-Scripts Planet-Oof-Scripts Plank-it-Scripts Plates-Of-Fate-Remastered-Scripts Players-RNG-Scripts PLAYPRINTS-World-Scripts Pls-Donate-Scripts PLS-STEAL-Scripts Plus-1-Blocks-Every-Second-Scripts Plus-1-Damage-Every-Second-Scripts Plus-1-Fat-Every-Second-Scripts Plus-1-Jump-Race-Scripts Plus-1-Per-Second-Scripts Plus1-Blocks-Every-Second-Scripts Pop-Bubbles-For-UGC-Scripts Pop-Bubbles-Script Pop-It-Trading-Scripts Popping-Simulator-Scripts Power-Punch-Simulator-Scripts Power-Slap-Simulator-Scripts Power-Wash-Tycoon-Scripts Pressure-Scripts Pressure-Wash-Simulator-Scripts Prildas-Track-And-Field-Scripts Prison-Adventure-Scripts Prison-Life-Scripts Prison-Race-Clicker-Scripts Pro-Piece-PRO-MAX-Scripts Project-Baki-2-Scripts Project-JoJo-Scripts Project-Lazarus-Scripts Project-Menacing-Scripts Project-Mugetsu-Scripts Project-New-World-Scripts Project-Palaro-Scripts Project-Playtime-Multiplayer-Scripts Project-Slayers-Scripts Project-Smash-Scripts Project-XL-Scripts Project-XXL-Scripts ProTube-Race-Clicker-Scripts Public-Bathroom-Simulator-Scripts Pull-A-Sword-Scripts Punch-A-Brick-Wall-Simulator-Scripts Punch-Anime-Simulator-Scripts Punch-Dragon-Simulator-Scripts Punch-Hole-Simulator-Scripts Punch-Monster-Simulator-Scripts Punch-Monsters-Scripts Punch-Simulator-Scripts Punch-Wall-Simulator-Scripts Puppy-Tycoon-Scripts Push-a-Car-Scripts Push-Dummies-Down-The-Sparta-Hole-Scripts Push-people-of-a-train-Scripts Push-People-Off-a-Train-Scripts Push-Simulator-Scripts Push-Up-Battles-Scripts Push-Up-Simulator-Scripts Push-Up-Training-Simulator-Scripts Race-A-Friend-Scripts Race-Car-Clicker-Scripts Race-Clicker-Scripts Race-Simulator-Scripts Racing-Rocket-Scripts Ragdoll-Clicker-Scripts Ragdoll-Engine-Scripts Rainbow-Friends-2-Scripts Rainbow-Friends-Scripts Raise-A-Floppa-2-Scripts Raise-A-Monke-Scripts Raise-A-Peter-Scripts Raise-A-Pochita-Scripts Raise-A-Sonic-Scripts Raise-A-Yippee-Scripts Raise-Kenny-Scripts Ramen-Simulator-Scripts Ramp-Jumping-On-Sports-Cars-Scripts Ramp-Jumping-Scripts Randomizer-Scripts Rank-Simulator-Scripts Rank-Simulator-X-Scripts Rarity-Factory-Tycoon-Scripts Rat-Washing-Tycoon-Scripts Rate-My-Avatar-Scripts Rays-Mod-Scripts RB-Battles-Scripts RB-World-4-Scripts RE-XL-Scripts Realistic-Gun-Shooter-Scripts REALISTIC-HOOD-Scripts Realistic-Mansion-Tycoon-Scripts Realistic-War-Scripts Realm-Rampage-Scripts Realms-Simulator-Scripts Reaper-2-Scripts Reaper-Clicker-Scripts Rebirth-Champions-X-Scripts Reborn-as-Swordman-Scripts Red-Light-Green-Light-Scripts RedBox-Scripts Redcliff-City-RP-Scripts Redwood-Prison-Scripts Refinery-Caves-Scripts reroll.gg-Scripts Residence-Massacre-Scripts Resort-Tycoon-Scripts Restaurant-Tycoon-2-Scripts Retail-Tycoon-2-Scripts Rich-Clicker-Simulator-Scripts Ride-a-Box-Down-a-Slide-Scripts Ride-a-Cart-Simulator-Scripts Ride-Friend-Race-Scripts Ridgeway Concepts-Scripts Rise-Of-Nations-Scripts Rivals-Scripts RNG-Fights-Scripts RNG-Rollers-Scripts Ro-Fruit-Scripts Ro-Ghoul-Scripts RO-Wizard-Scripts Roach-Scripts Road-To-Gramby's-Scripts Rob-a-Convenience-Store-Simulator-Scripts Rob-A-Jewellery-Store-Scripts Rob-the-Place-Scripts Robending-Online-Scripts Roblox-But-You-Get-Jump-Scripts Roblox-But-You-Get-Smarter-Scripts Roblox-Cookie-Clicker-Scripts Roblox-Is-Unbreakable-Scripts Roblox-Titanic-Scripts RoBowling-Scripts RoCitizens-Scripts Rock-Fruit-Scripts Rocket-Wings-Simulator-Scripts Rocks-Scripts Rogue-Demon-Scripts Rogue-Nightmare-Scripts Rogue-Ninja-Scripts Ronald-Scripts Rooms-Scripts RoStreets-Scripts RoTube-Life-Scripts RoVille-Scripts Royal-High-Scripts Royalloween-Scripts Running-From-The-Internet-Scripts Running-Head-Scripts Running-Simulator-Scripts RunStar-Simulator-Scripts Rush-Point-Scripts Saber-Simulator-Scripts Sail-The-World-Simulator-Scripts Saitama-Battleground-Scripts Sakura Piece-Scripts Sakura-Piece-Scripts Sakura-Stand-Scripts Sandhurts-Military-Academy-Scripts Sans-Multiversal-Battles-Scripts Sans-Simulator-X-Scripts Save-Your-Princess-Scripts School-Quest-Scripts School-Simulator-Scripts SCP-3008-Scripts SCP-Roleplay-Scripts SCP-Stranded-Scripts SCP-Warfare-Tycoon-Scripts Scythe-Simulator-Scripts Sea-Piece-2-Scripts Second-Piece-Scripts Sell-Poop-Tycoon-Scripts send-memes-to-your-enemies-to-destroy-them-tycoon-Scripts Server-Simulator-Scripts SHADOVIS-RPG-Scripts Shadow-Boxing-Battles-Scripts SharkBite-1-Scripts SharkBite-2-Scripts Sheep-Farm-Scripts Sheep-Tycoon-Scripts SHEIN-x-Klarna-Wonderland-Scripts ShimmerVille-Scripts Shindo-Life-Scripts Shinobi-Life-2-Scripts Shipping-Lanes-Scripts Shockwave-Racing-Scripts Shoot-a-Friend-Scripts Shoot-Out-Scripts Shoot-Skibi-Toilet-Simulator-Scripts Shoot-Wall-Simulator-Scripts Shopping-Wars-Scripts Shortest-Answer-Wins-Scripts Shovelwares-Brain-Game-Scripts Shrek-In-The-Backrooms-Scripts Shuriken-Throwing-Simulator-Scripts Sigma-Simulator-Scripts Simple-Incremental-Scripts SimToLife-Scripts Sinking-Ship-Roblox-Britannic-Scripts SIREN-COPS-PRISON-Scripts Siren-Head-Rebirth-Scripts Sisyphus-Simulator-Scripts Site-Roleplay-Scripts Skateboard-Obby-Scripts Ski-Race-Scripts Skibi-Battle-Simulator-Scripts Skibi-Defense-Scripts Skibi-Fight-Simulator-Scripts Skibi-Toilet-Game-Scripts skibi-toilet-Scripts Skibi-Toilet-War-Scripts Skibi-Toilets-Race-Scripts Skibi-Toilets-Scripts Skibid-Toilet-Siege-Defense-Scripts Skibid-Toilets-VS-Cameramen-Scripts Skibidi-Aura-Simulator-Scripts Skibidi-Fight-Simulator-Scripts Skibidi-Toilet-Tycoon-Scripts Skibidi-Tower-Defense-Scripts Sky-Ball-Scripts SKYDIVE-Off-A-TOWER-Scripts Skydive-Race-Clicker-Scripts SKYWARS-Scripts SL-PRISON-Scripts Slap-Battle-Simulator-Scripts slap-battles-but-bad-Scripts Slap-Battles-Scripts Slasher-Blade-Scripts Slayer-Corps-Simulator-Scripts Slayer-Tycoon-Scripts Slayers-Unleashed-Scripts Slide-Down-A-Hill-Scripts Slide-House-Tumble-Scripts Slime-Mine-Scripts Slime-Slaying-Simulator-Scripts Slime-Survival-Scripts Slime-Tower-Tycoon-Scripts Sling-Race-Scripts Sling-Scripts Slots-RNG-Scripts Smash-And-Grab-Scripts Smooth-Slicing-Scripts Snipers-Scripts Snow-Plow-Simulator-Scripts Snow-Shoveling-Simulator-Scripts Snowball-io-Scripts Snowballer-Scripts Snowboard-Obby-Scripts Soccer-League-Scripts Soccer-Legends-Scripts Solera-Hotel-And-Resort-Scripts Solo-Challenging-Simulator-Scripts Sols-RNG-Scripts Son-Goku-The-Finale-Scripts Sonic-Speed-Simulator-Scripts Sorcerer-Battleground-Scripts Soul-Cultivation-Scripts Soul-Eater-Resonance-Scripts Soul-Land-Blox-Scripts Soul-Scripts Soul-War-Scripts Southwest-Florida-Beta-Scripts Space-Simulator-Reborn-Scripts Space-Tycoon-Scripts Specter-2-Scripts Speed-City-Scripts Speed-Race-Clicker-Scripts Speed-Run-12-Scripts Speed-Run-4-Scripts Speed-Run-Race-Scripts Speed-Run-Simulator-Scripts Speed-Runner-Scripts Speed-Simulator-Scripts SpeedLands-V2-Scripts Spider-Scripts SpongeBob-Simulator-Scripts Spray-Paint-Scripts SPTS-Endless-Scripts SPTS-Origin-Scripts Squid-Game-Scripts Stack-Ball-Scripts Stair-Tappers-Scripts Stairs-Of-RAGE-Scripts Stand Upright Rebooted-Scripts Stand-Proud-Scripts Stand-Upright-Rebooted-Scripts Stands-Awakening-Scripts Stands-Unleashed-Scripts Star-Rail-Simulator-Scripts Star-Simulator-Scripts Stardust-Reborn-Scripts Starscape-Scripts start-an-emo-band-from-your-garage-tycoon-Scripts Starving-Artist-Scripts Starving-Artists-Scripts State-Of-Anarchy-Scripts Stay-in-the-Circle-Scripts Steal-Roblox-Games-Scripts Steel-Titans-Scripts STEEP-STEPS-Scripts Stone-Farm-Simulator-Scripts Stone-Haven-County-Asylum-Scripts Stone-Miner-Simulator-2-Scripts Stop-It-Slender-Scripts Stranded-Scripts Strength-Simulator-Scripts Striker-Odyssey-Scripts Strong-Clickers-Scripts Strong-Fighters-Simulator-Scripts Strong-Katana-Simulator-Scripts Strong-Muscle-Simulator-Scripts Strong-Muscle-Simulator-X-Scripts Strong-Ninja-Simulator-Scripts Strongest-Anime-Squad-Simulator-Scripts Strongest-Battlegrounds-Scripts Strongest-Punch-Simulator-Scripts Strongman-Simulator-Scripts Strucid-Scripts Stud-Jump-Scripts stupid-idiot-cafe-Scripts Sukuna-Battlegrounds-Scripts Sunsilk-Hair-Care-Lab-Tycoon-Scripts Super-Blox-Soccer-Scripts Super-Bomb-Survival-Scripts Super-Bridge-Runners-Scripts Super-Doomspire-Scripts Super-Dunk-Scripts Super-Fun-Obby-500-Stages-Scripts Super-Hero-Race-Clicker-Scripts Super-Hero-Tycoon-Scripts Super-Jump-Race-Scripts Super-League-Soccer-Scripts Super-Muscle-Simulator-Scripts Super-Power-Evolution-Simulator-Scripts Super-Power-Fighting-Scripts Super-Power-Fighting-Simulator-Scripts Super-Power-Grinding-Simulator-Scripts Super-Punch-Simulator-Scripts Super-Slime-Simulator-Scripts Super-Store-Tycoon-Scripts Super-Striker-League-Scripts Superbox-Siege-Defense-Scripts Superpower-Simulator-Chakra-Scripts Survival-Bruno-The-Encanto-Movie-Killer-Scripts Survive-And-Kill-Scripts Survive-And-Kill-The-Killer-In-Area-51-Scripts Survive-and-Kill-the-Killers-in-Area-51-Scripts Survive-The-Killer-Scripts Survive-The-Night-Scripts Survive-The-Slimes-Scripts Sushi-Shop-Simulator-Scripts SWAT-Breaching-Scripts Sweets-obby-Scripts Swim-Race-Simulator-Scripts Swimming-Race-Clicker-Scripts Swing-City-Scripts Sword-Battles-Scripts Sword-Burst-2-Scripts Sword-Factory-X-Scripts Sword-Fighter-2-Scripts Sword-Fighters-Simulator-Scripts Sword-Haven-Scripts Sword-Race-Scripts Sword-Slasher-Scripts Sword-Warriors-Scripts SwordBurst-3-Scripts T-ang-County-Hebei-Scripts T-Titans-Battlegrounds-Scripts tais-RNG-Scripts Tall-Man-Run-Scripts Tank-Game-Simulator Tap-Legends-Scripts Tap-Simulator-X-Scripts Tapping-Legend-X-Scripts Tapping-Legends-Final-Scripts Tapping-Legends-X-Scripts Tapping-Masters-Scripts Tapping-Simulator-Scripts Tatakai-Scripts Taxi-Boss-Scripts Taxi-Simulator-2-Scripts Team-Coop-Puzzles-Obby-Scripts Teamwork-Morphs-Scripts Teamwork-Puzzles-2-Scripts Teamwork-Puzzles-Scripts Teddy-Escape-Scripts Terraria-Clicker-Scripts Texting-Simulator-Scripts Tha-Bronx-2-Scripts Tha-Hood-Scripts The-Asylum-Scripts The-Backrooms-Scripts The-Chosen-One-Scripts The-Classic-Scripts The-Clown-Killings-Reborn-Scripts The-Dropper-Scripts The-Final-Stand-2-Scripts The-Floor-Is-Lava-Scripts The-Games-Scripts The-Glitch-Obby-Scripts The-Grand-Crossing-Border-Roleplay-Scripts The-Heroes-Simulator-Scripts The-Hood-Scripts The-Horror-Mansion-Scripts The-Intruder-Scripts The-Legendary-Swords-2-Scripts The-Long-Drive-Scripts The-Maze-Scripts The-Mimic-Scripts The-Never-Ending-Train-Ride-Scripts The-Normal-Elevator-Scripts The-Obby-Elevator-Scripts The-Rake-REMASTERED-Scripts The-Schoolhouse-Scripts The-Simpsons-Tower-Defense-Scripts The-Spinner-Scripts The-Strongest-Battlegrounds-Scripts The-Survival-Game-Scripts The-Test-Scripts The-Town-Scripts The-Ultimate-Upgrade-Tree-Scripts The-Underground-War-2-Scripts The-Underground-War-3-Scripts The-Wild-West-Scripts THIEF-LIFE-Simulator-Scripts Thief-Simulator-Scripts Thirsty-Vampire-Scripts Those-Who-Remain-Scripts Throw-Ball-Simulator-Scripts Tien-Tien-Piece-Scripts Timber-2-Scripts Timber-Champions-Scripts TIMMEH-Scripts Titan-Warfare-Scripts TLK-Prison-Scripts TMNT-Battle-Tycoon-Scripts To-Become-Rich-And-Famous-Scripts Toe-Wrestle-Simulator-Scripts Toilet-Attack-Scripts Toilet-Battle-Simulator-Scripts Toilet-Teamwork-Morphs-Scripts Toilet-Tower-Defense-Scripts Tokyo-Saga-Scripts Tongue-Battles-Scripts Tornado-Simulator-Scripts Total-Roblox-Drama-Scripts Touch-Football-Scripts Tower-Defense-Simulator-Scripts Tower-Defense-X-Scripts Tower-Heroes-Scripts Tower-Merge-Simulator-Scripts Tower-Of-Flood-Escape-2-Scripts Tower-Of-Hell-Scripts Tower-Of-Misery-Scripts Tower-Simulator-Scripts town-Scripts Toy-Simulator-Scripts Toy-SoldierZ-Scripts TPS-Street-Soccer-Scripts TPS-Ultimate-Soccer-Scripts Trade-Hangout-Scripts Trade-Tower-Scripts Trampoline-Towers-Scripts Transfur-Outbreak-Scripts Treasure-Hunt-Islands-Scripts Treasure-Quest-Scripts Trench-War-2-Scripts Trench-War-Scripts Trenches-Scripts Trick-Shot-Simulator-Scripts Trident-Survival-Scripts Trident-Survival-V2-Scripts Troll-Cart-Ride-Scripts Troll-Obby-Scripts Troll-People-Obby-Scirpts Trollge-Conventions-Scripts Trollge-Incident-Fights-Reborn-Scripts Troop-Army-Simulator-Scripts Tropical-Resort-Tycoon-Scripts Truck-Factory-Tycoon-Scripts Try-To-Die-Dco-Scripts Try-To-Die-Scripts Try-to-oof-3-Scripts Tsunami-Game-Scripts Tug-Of-War-Simulator-Scripts Twice-Square-Scripts Twilight-Daycare-Scripts Tycoon-RNG-Scripts Type-Or-Die-Scripts Type-Race-Scripts UFO-Tycoon-Scripts UGC-Dont-Move-Scripts UGC-Limited-Codes-Scripts Ultimate-Attack-on-Titan-Scripts Ultimate-Easy-Obby-Scripts Ultimate-Factory-Tycoon-Scripts Ultimate-Random-Night-Scripts Ultimate-Tower-Defense-Scripts Ultra-Clicker-Simulator-Scripts Ultra-Easy-Obby-Scripts Ultra-Power-Tycoon-Scripts Unboxing-Simulator-Scripts Undertale-Crazy-Multiverse-Scripts Undertale-Wave-Rush-Scripts Underworld-Realm-Scripts Unicorn-Tycoon-Scripts Unicycle-Down-A-Hill-Scripts Unit-Classified-Scripts Universal-Scripts Unnamed-Shooter-Scripts UnOfficial-Uno-Scripts Untitled-Attack-On-Titan-Scripts untitled-boxing-game-Scripts Untitled-Hood-Scripts untitled-tag-game-Scripts Unwavering-Soul-Scripts Vampire Fighters-Scripts Vampire-Hunters-3-Scripts VBet-Scripts Vehicle-Legends-Scripts Vehicle-Simulator-Scripts Vehicle-Tycoon-Scripts Verdant-Moon-Scripts Victory-Race-Scripts Viet-Pirates-X-Scripts Viral-Simulator-Scripts Void-Fishing-Scripts Volcano-Escape-Scripts Volleyball-Scripts Voxlblade-Scripts Wacky-Wizards-Scripts Wall-Punch-Simulator-Scripts Wall-Punching-Simulator-Scripts Wall-Smash-Simulator-Scripts Walmart-Land-Script Walmart-Land-Scripts War-Age-Tycoon-Scripts War-Machines-Scripts War-Tycoon-Scripts Warrior-Army-Simulator-2-Scripts Warrior-Champions-Scripts Warrior-Simulator-Scripts Wasteland-Tycoon-Scripts Weak-Legacy-2-Scripts Weak-Legacy-Scripts Weapon-Crafting-Simulator-Scripts Weapon-Fighting-Scripts Weapon-Fighting-Simulator-Scripts Weapon-Forge-Simulator-Scripts Weapon-Simulator-2-Scripts Weaponry-Scripts Weird-Strict-Dad-Scripts West-Elm-Home-Design-Scripts Westbound-Scripts Wheat-Farming-Simulator-Scripts Where's-The-Baby-Scripts White-Room-Scripts Wild-Horse-Islands-Scripts Winds-Of-Fortune-Scripts Wings-Of-Glory-Scripts Wisteria-2-[ALPHA]-Scripts Wisteria-2-Scripts Wizard-Tycoon-2-Player-Scripts Wolves-Life-3-Scripts Wonder-Chase-Scripts Wonder-Woman-Scripts Word-Bomb-Scripts Word-Bridge-Scripts Word-Of-Stands-Scripts Wordie-Scripts Work-At-A-Hotel-&-Resort-Scripts Work-At-A-Pizza-Place-Scripts Work-At-A-Pizza-Scripts World-Of-Aincrad-Scripts World-Of-Sorcery-Scripts World-Of-Stands-Scripts World-Of-Trollge-Scripts World-Zero-Scripts Worlds-Hardest-Game-Scripts Wormface-Scripts Write-A-Letter-Scripts Yeet-A-Friend-Scripts Yeet-A-Pet-Scripts Yo-Yo-Simulator-Scripts You-Get-1-Damage-Scripts You-Get-1-Jump-Power-Scripts Your-Bizarre-Adventure-Scripts Your-Local-Mechanic-Scripts Youtube-Simulator-X-Scripts YouTube-Simulator-Z-Scripts YouTube-Tycoon-Scripts YoYo-Simulator-Scripts ZO-SAMURAI-Scripts Zombie-Arena-Scripts Zombie-Army-Simulator-Scripts Zombie-Attack-Scripts Zombie-Battle-Tycoon-Scripts Zombie-Game-Scripts Zombie-Hunters-Scripts Zombie-Lab-Scripts Zombie-Merge-Tycoon-Scripts Zombie-Rush-Scripts Zombie-Survivors-Scripts Zombie-Uprising-Scripts Zombie-VS-Friends-Simulator-Scripts