0% found this document useful (0 votes)
90 views2 pages

Scripts

The document contains a Lua script configuration for a game, allowing users to set preferences for team selection, translation, and various visual settings. It includes options to ignore certain players and tools, adjust mesh and particle visibility, and enhance performance through settings like FPS cap and low-quality graphics. A warning is provided that the script has not been verified and should be used at one's own risk.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
90 views2 pages

Scripts

The document contains a Lua script configuration for a game, allowing users to set preferences for team selection, translation, and various visual settings. It includes options to ignore certain players and tools, adjust mesh and particle visibility, and enhance performance through settings like FPS cap and low-quality graphics. A warning is provided that the script has not been verified and should be used at one's own risk.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

local Settings = {

JoinTeam = "Pirates"; -- Pirates / Marines


Translator = true; -- true / false
}
loadstring(game:HttpGet("https://raw.githubusercontent.com/tlredz/Scripts/refs/
heads/main/main.luau"))(Settings)

--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at
your own risk!
]]
_G.Ignore = {}
_G.Settings = {
Players = {
["Ignore Me"] = true,
["Ignore Others"] = true,
["Ignore Tools"] = true
},
Meshes = {
NoMesh = false,
NoTexture = false,
Destroy = false
},
Images = {
Invisible = true,
Destroy = false
},
Explosions = {
Smaller = true,
Invisible = false, -- Not for PVP games
Destroy = false -- Not for PVP games
},
Particles = {
Invisible = true,
Destroy = false
},
TextLabels = {
LowerQuality = true,
Invisible = false,
Destroy = false
},
MeshParts = {
LowerQuality = true,
Invisible = false,
NoTexture = false,
NoMesh = false,
Destroy = false
},
Other = {
["FPS Cap"] = 360, -- true to uncap
["No Camera Effects"] = true,
["No Clothes"] = true,
["Low Water Graphics"] = true,
["No Shadows"] = true,
["Low Rendering"] = true,
["Low Quality Parts"] = true,
["Low Quality Models"] = true,
["Reset Materials"] = true,
}
}
loadstring(game:HttpGet("https://raw.githubusercontent.com/CasperFlyModz/
discord.gg-rips/main/FPSBooster.lua"))()

You might also like