message_5
message_5
getgenv().Loot = {
['Options'] = {
['Notifications'] = false,
['FOVMode'] = "Sticky" , --// Sticky and FollowMouse
['MuteBoomBox'] = true,
['AutoLowGfx'] = false,
['RemoveSeats'] = false,
},
['AimAssist'] = {
['Main'] = {
['Enabled'] = true,
['Key'] = "E",
['SmoothLock'] = true,
['Smoothness'] = 0.28,
['PredictMovement'] = false,
['Prediction'] = 0.135,
['Shake'] = false,
['ShakeValue'] = 5,
['Parts'] = {"Head"}
},
['FOV'] = {
['UseFOV'] = true,
['ShowFOV'] = false,
['Radius'] = 120,
['Color'] = Color3.fromRGB(255, 255, 255),
['Filled'] = false,
['Transparency'] = 0.4
}
},
["SilentAim"] = {
['Main'] = {
['Enabled'] = true,
['Mode'] = "Target", --// Regular and Target (regular doesnt work
right now)
['KeyBind'] = 'C',
['Prediction'] = 0.1282,
['Hitchance'] = 500,
['Parts'] =
{"Head","LowerTorso","UpperTorso","HumanoidRootPart","LeftLowerArm","RightLowerArm"
,"LeftUpperArm","RightUpperArm","LeftLowerLeg","LeftUpperLeg","RightLowerLeg","Righ
tUpperLeg"},
['OverrideYaxis'] = true, --// Makes Silent Aim Alot More Legit
['AntiCurve'] = true,
['AntiGroundShots'] = true,
['ClosestPoint'] = true
},
['FOV'] = {
['ShowFOV'] = true,
['Radius'] = 70,
['Color'] = Color3.fromRGB(255, 255, 255),
['Filled'] = false,
['Transparency'] = 0.8
}
},
['Snapline'] = {
['Enabled'] = false,
['Color'] = Color3.fromRGB(255, 255, 255),
['Transparency'] = 0.4,
['Visible'] = false
},
['Extra'] = {
['TrashTalk'] = true
},
['CFrame'] = {
['Enabled'] = true,
['Toggle'] = "V"
},
['Desync'] = {
['Enabled'] = true,
['Key'] = Enum.KeyCode.X,
['DirectionToShoot'] = "Behind"
},
['Visuals'] = {
['DistanceESP'] = true,
['WeaponESP'] = false,
['HealthBar'] = true,
['NameESP'] = false,
['Radar'] = true
},
['Texture'] = {
['Enabled'] = true,
['Material'] = "Brick",
['Color'] = Color3.fromRGB(255,255,255)
},
['WaterMark'] = {
['Enabled'] = false,
['ShowFPS'] = true
},
['PingPrediction'] = { -- *REWRITE* Current sets are Bad
['Enabled'] = true,
['ping20_30'] = 0.12588,
['ping30_40'] = 0.11911,
['ping40_50'] = 0.12471,
['ping50_60'] = 0.12766,
['ping60_70'] = 0.12731,
['ping70_80'] = 0.12951,
['ping80_90'] = 0.13181,
['ping90_100'] = 0.138,
['ping100_110'] = 0.146,
['ping110_120'] = 0.1367,
['ping120_130'] = 0.1401,
['ping130_140'] = 0.1437,
['ping140_150'] = 0.153,
['ping150_160'] = 0.1514,
['ping160_170'] = 0.1663,
['ping170_180'] = 0.1672,
['ping180_190'] = 0.1848,
['ping190_200'] = 0.1865,
}
}
end
-- // Shorthand
local uwuLoot = getgenv().Loot
local uwuMain = uwuLoot.Options
local uwuAimAssistMain = uwuLoot.AimAssist.Main
local uwuAimAssistFOV = uwuLoot.AimAssist.FOV
local uwuSilentAimMain = uwuLoot.SilentAim.Main
local uwuAntiGroundShots = uwuLoot.SilentAim.AntiGroundShots
local uwuAntiCurve = uwuLoot.SilentAim.AntiCurve
local uwuSilentAimFOV = uwuLoot.SilentAim.FOV
local uwuTrace = uwuLoot.Snapline
local uwuPingPred = uwuLoot.PingPrediction
local uwuFAG = uwuLoot.WaterMark
local uwuBLACKDICK = uwuLoot.Visuals.DistanceESP
local uwuHAHAHAHAH = uwuLoot.Visuals.WeaponESP
local uwuNIGGER = uwuLoot.CFrame
local uwuCUMCUMCUM = uwuLoot.Extra.TrashTalk
local uwuNIGGA = uwuLoot.Visuals.HealthBar
local uwuPENIS = uwuLoot.Visuals.NameESP
local uwuAHAAHAAHHAHAHA = uwuLoot.Visuals.Radar
local uwuAUFHAUYFGHYUFHFUHJ = uwuLoot.Desync
-- // Optimization
local vect3 = Vector3.new
local vect2 = Vector2.new
local cnew = CFrame.new
-- // Libraries
local NotificationHolder =
loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/
Module.Lua"))()
local Notification =
loadstring(game:HttpGet("https://raw.githubusercontent.com/cloudtad9/
daasddadsadadsad/main/adadassadasd"))()
local library =
loadstring(game:HttpGet("https://raw.githubusercontent.com/Consistt/Ui/main/
UnLeaked"))()
-- // Services
local uis = game:GetService("UserInputService")
local rs = game:GetService("RunService")
local plrs = game:GetService("Players")
local ws = game:GetService("Workspace")
-- // Script Variables
local CToggle = false
local lplr = plrs.LocalPlayer
local CTarget = nil
local CPart = nil
local SToggle = false
local STarget = nil
local SPart = nil
-- // Client Variables
local m = lplr:GetMouse()
local c = ws.CurrentCamera
-- // Camlock FOV
local AimAssistFOV = Drawing.new("Circle")
AimAssistFOV.Visible = uwuAimAssistFOV.ShowFOV
AimAssistFOV.Thickness = 1
AimAssistFOV.NumSides = 30
AimAssistFOV.Radius = uwuAimAssistFOV.Radius * 3
AimAssistFOV.Color = uwuAimAssistFOV.Color
AimAssistFOV.Filled = uwuAimAssistFOV.Filled
AimAssistFOV.Transparency = uwuAimAssistFOV.Transparency
--Silent FOV
local SilentAimFOV = Drawing.new("Circle")
SilentAimFOV.Visible = uwuSilentAimFOV.ShowFOV
SilentAimFOV.Thickness = 1
SilentAimFOV.NumSides = 30
SilentAimFOV.Radius = uwuSilentAimFOV.Radius * 3
SilentAimFOV.Color = uwuSilentAimFOV.Color
SilentAimFOV.Filled = uwuSilentAimFOV.Filled
SilentAimFOV.Transparency = uwuSilentAimFOV.Transparency
--Tracer
local Line = Drawing.new("Line")
Line.Color = uwuTrace.Color
Line.Transparency = uwuTrace.Transparency
Line.Thickness = 1
Line.Visible = uwuTrace.Visible
-- // Script Functions
local function uwuFindTawget() -- // Find target
local d, t = math.huge, nil
for _,v in pairs (plrs:GetPlayers()) do
local _,os = c:WorldToViewportPoint(v.Character.PrimaryPart.Position)
if v ~= lplr and v.Character and v.Character:FindFirstChild("Humanoid")
and v.Character.Humanoid.Health ~= 0 and
v.Character:FindFirstChild("HumanoidRootPart") and os then
local pos =
c:WorldToViewportPoint(v.Character.PrimaryPart.Position)
local magnitude = (vect2(pos.X, pos.Y) - vect2(m.X, m.Y +
36)).magnitude
if magnitude < d then
t = v
d = magnitude
end
end
end
return t
end
uis.InputBegan:Connect(function(k,t)
if not t then
if k.KeyCode == Enum.KeyCode[uwuAimAssistMain.Key:upper()] then
if CTarget == nil then
CToggle = true
CTarget = uwuFindTawget()
if uwuMain.Notifications then
SendNotification("Aim Target "..CTarget.Name)
end
else
if CToggle == true then
CToggle = false
CTarget = nil
if uwuMain.Notifications then
SendNotification("Unlocked")
end
end
end
elseif k.KeyCode == Enum.KeyCode[uwuSilentAimMain.KeyBind:upper()] and
uwuSilentAimMain.Mode == "Regular" then
if SToggle then
SToggle = false
if uwuMain.Notifications then
SendNotification("silent disabled")
end
else
SToggle = true
if uwuMain.Notifications then
SendNotification("silent enabled")
end
end
end
end
end)
rs.RenderStepped:Connect(function()
if CTarget then
CPart = uwuFindPart()
local pos = nil
local cum = nil
if CTarget.Character.BodyEffects["K.O"].Value == true or
lplr.Character.BodyEffects["K.O"].Value == true then
CToggle = false
CTarget = nil
else
if uwuAimAssistMain.Shake then
if uwuAimAssistMain.PredictMovement then
if not uwuCheckAnti(CTarget) then
cum = CTarget.Character[CPart].Position +
CTarget.Character[CPart].Velocity * uwuAimAssistMain.Prediction + (vect3(
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue),
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue),
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue)
) * 0.1)
else
cum = CTarget.Character[CPart].Position +
((CTarget.Character.Humanoid.MoveDirection * CTarget.Character.Humanoid.WalkSpeed)
* uwuAimAssistMain.Prediction + (vect3(
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue),
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue),
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue)
) * 0.1))
end
pos = c:WorldToViewportPoint(cum)
else
cum = CTarget.Character[CPart].Position + (vect3(
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue),
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue),
math.random(-uwuAimAssistMain.ShakeValue,
uwuAimAssistMain.ShakeValue)
) * 0.1)
pos = c:WorldToViewportPoint(cum)
end
else
if uwuAimAssistMain.PredictMovement then
if not uwuCheckAnti(CTarget) then
cum = CTarget.Character[CPart].Position +
CTarget.Character[CPart].Velocity * uwuAimAssistMain.Prediction
else
cum = CTarget.Character[CPart].Position +
((CTarget.Character.Humanoid.MoveDirection * CTarget.Character.Humanoid.WalkSpeed)
* uwuAimAssistMain.Prediction)
end
pos = c:WorldToViewportPoint(cum)
else
cum = CTarget.Character[CPart].Position
pos = c:WorldToViewportPoint(cum)
end
end
if InRadiuwus(CTarget, uwuAimAssistMain, AimAssistFOV.Radius) then
local main = nil
if uwuAimAssistMain.SmoothLock then
main = cnew(c.CFrame.p, cum)
c.CFrame = c.CFrame:Lerp(main, uwuAimAssistMain.Smoothness,
Enum.EasingStyle.Sine, Enum.EasingDirection.InOut)
else
c.CFrame = cnew(c.CFrame.p, cum)
end
end
if uwuMain.FOVMode == "FollowMouse" then
if uwuAimAssistFOV.ShowFOV then
AimAssistFOV.Position = vect2(m.X, m.Y + 36)
end
if uwuSilentAimFOV.ShowFOV then
SilentAimFOV.Position = vect2(m.X, m.Y + 36)
end
elseif uwuMain.FOVMode == "Sticky" then
if uwuAimAssistFOV.ShowFOV then
AimAssistFOV.Position = vect2(pos.X, pos.Y)
end
if uwuSilentAimFOV.ShowFOV then
SilentAimFOV.Position = vect2(pos.X, pos.Y)
end
end
if uwuTrace.Enabled then
Line.Visible = true
Line.From = vect2(m.X, m.Y + 36)
Line.To = vect2(pos.X, pos.Y)
end
end
else
AimAssistFOV.Position = vect2(m.X, m.Y + 36)
SilentAimFOV.Position = vect2(m.X, m.Y + 36)
Line.Visible = false
end
end)
lplr.Character.ChildAdded:Connect(function(tool)
if tool:IsA("Tool") then
tool.Activated:connect(function()
if uwuSilentAimMain.Mode == "Regular" then
if SToggle then
STarget = uwuFindTawget()
if STarget then
SPart = uwuFindSilentPart()
if SPart then
Silent()
end
end
end
elseif uwuSilentAimMain.Mode == "Target" then
if CToggle then
STarget = CTarget
if STarget then
SPart = uwuFindSilentPart()
if SPart then
Silent()
end
end
end
end
end)
end
end)
lplr.CharacterAdded:Connect(function(char)
char.ChildAdded:Connect(function(tool)
tool.Activated:connect(function()
if uwuSilentAimMain.Mode == "Regular" then
if SToggle then
STarget = uwuFindTawget()
if STarget then
SPart = uwuFindSilentPart()
if SPart then
Silent()
end
end
end
elseif uwuSilentAimMain.Mode == "Target" then
if CToggle then
STarget = CTarget
if STarget then
SPart = uwuFindSilentPart()
if SPart then
Silent()
end
end
end
end
end)
end)
end)
--Ping Prediction
coroutine.resume(coroutine.create(function()
while true do
if uwuPingPred.Enabled then
local ping = game:GetService("Stats").Network.ServerStatsItem["Data
Ping"]:GetValue()
if ping <= 40 then
uwuSilentAimMain.Prediction = uwuPingPred.ping30_40
elseif ping <= 50 then
uwuSilentAimMain.Prediction = uwuPingPred.ping40_50
elseif ping <= 60 then
uwuSilentAimMain.Prediction = uwuPingPred.ping50_60
elseif ping <= 70 then
uwuSilentAimMain.Prediction = uwuPingPred.ping60_70
elseif ping <= 80 then
uwuSilentAimMain.Prediction = uwuPingPred.ping70_80
elseif ping <= 90 then
uwuSilentAimMain.Prediction = uwuPingPred.ping80_90
elseif ping <= 100 then
uwuSilentAimMain.Prediction = uwuPingPred.ping90_100
elseif ping <= 110 then
uwuSilentAimMain.Prediction = uwuPingPred.ping100_110
elseif ping <= 120 then
uwuSilentAimMain.Prediction = uwuPingPred.ping110_120
elseif ping <= 130 then
uwuSilentAimMain.Prediction = uwuPingPred.ping120_130
elseif ping <= 140 then
uwuSilentAimMain.Prediction = uwuPingPred.ping130_140
elseif ping <= 150 then
uwuSilentAimMain.Prediction = uwuPingPred.ping140_150
elseif ping <= 160 then
uwuSilentAimMain.Prediction = uwuPingPred.ping150_160
elseif ping <= 170 then
uwuSilentAimMain.Prediction = uwuPingPred.ping160_170
elseif ping <= 180 then
uwuSilentAimMain.Prediction = uwuPingPred.ping170_180
elseif ping <= 190 then
uwuSilentAimMain.Prediction = uwuPingPred.ping180_190
elseif ping <= 200 then
uwuSilentAimMain.Prediction = uwuPingPred.ping190_200
end
task.wait(0.7)
end
end
end))
local c1
local c2
local c3
c2 = cr.AncestryChanged:Connect(function(_,parent)
if not parent then
dc()
end
end)
c3 = h.HealthChanged:Connect(function(v)
if (v<=0) or (h:GetState() == Enum.HumanoidStateType.Dead) then
dc()
end
end)
c1 = rs.RenderStepped:Connect(function()
local hrp_pos,hrp_os = c:WorldToViewportPoint(hrp.Position)
if hrp_os then
text.Position = Vector2.new(hrp_pos.X,hrp_pos.Y)
text.Text = '['..tostring(math.floor(getdistancefc(hrp)))..'m]'
text.Visible = true
else
text.Visible = false
end
end)
end
ps.PlayerAdded:Connect(p_added)
end
--// WeaponESP \\--
if uwuHAHAHAHAH == true then
local c = workspace.CurrentCamera
local ps = game:GetService("Players")
local lp = ps.LocalPlayer
local rs = game:GetService("RunService")
local c1
local c2
local c3
c2 = cr.AncestryChanged:Connect(function(_,parent)
if not parent then
dc()
end
end)
c3 = h.HealthChanged:Connect(function(v)
if (v<=0) or (h:GetState() == Enum.HumanoidStateType.Dead) then
dc()
end
end)
c1 = rs.Heartbeat:Connect(function()
local hrp_pos,hrp_os = c:WorldToViewportPoint(hrp.Position)
if hrp_os then
text.Position = Vector2.new(hrp_pos.X, hrp_pos.Y)
text.Text = ' '..tostring(ftool(cr))..' '
text.Visible = true
else
text.Visible = false
end
end)
end
ps.PlayerAdded:Connect(p_added)
end
library.rank = "buyer"
local Wm = library:Watermark("Loot.fun | v" .. library.version .. " | " ..
library:GetUsername() .. " | rank: " .. library.rank)
if getgenv().Loot.WaterMark.ShowFPS == true then
local FpsWm = Wm:AddWatermark("fps: " .. library.fps)
coroutine.wrap(function()
while wait(.75) do
FpsWm:Text("fps: " .. library.fps)
end
end)()
end
end
local event =
game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest
player:GetMouse().KeyDown:connect(function(key)
if key == keybind then
event:FireServer(words[math.random(#words)], "All")
end
end)
end
local Settings = {
Box_Color = Color3.fromRGB(255, 0, 0),
Box_Thickness = 0.1,
}
local Team_Check = {
TeamCheck = false, -- if TeamColor is on this won't matter...
Green = Color3.fromRGB(0, 255, 0),
Red = Color3.fromRGB(255, 0, 0)
}
local TeamColor = true
--// SEPARATION
local player = game:GetService("Players").LocalPlayer
local camera = game:GetService("Workspace").CurrentCamera
local mouse = player:GetMouse()
local healthoffset =
plr.Character.Humanoid.Health/plr.Character.Humanoid.MaxHealth * d
library.greenhealth.Color = red:lerp(green,
plr.Character.Humanoid.Health/plr.Character.Humanoid.MaxHealth);
if Team_Check.TeamCheck then
if plr.TeamColor == player.TeamColor then
Colorize(Team_Check.Green)
else
Colorize(Team_Check.Red)
end
else
end
if TeamColor == true then
Colorize(plr.TeamColor.Color)
end
Visibility(true, library)
else
Visibility(false, library)
end
else
Visibility(false, library)
if game.Players:FindFirstChild(plr.Name) == nil then
connection:Disconnect()
end
end
end)
end
coroutine.wrap(Updater)()
end
for i, v in pairs(game:GetService("Players"):GetPlayers()) do
if v.Name ~= player.Name then
coroutine.wrap(ESP)(v)
end
end
game.Players.PlayerAdded:Connect(function(newplr)
if newplr.Name ~= player.Name then
coroutine.wrap(ESP)(newplr)
end
end)
end
local c1
local c2
local c3
c2 = cr.AncestryChanged:Connect(function(_,parent)
if not parent then
dc()
end
end)
c3 = h.HealthChanged:Connect(function(v)
if (v<=0) or (h:GetState() == Enum.HumanoidStateType.Dead) then
dc()
end
end)
c1 = rs.RenderStepped:Connect(function()
local hrp_pos,hrp_onscreen = c:WorldToViewportPoint(hrp.Position)
if hrp_onscreen then
text.Position = Vector2.new(hrp_pos.X, hrp_pos.Y)
text.Text = p.Name
text.Visible = true
else
text.Visible = false
end
end)
end
ps.PlayerAdded:Connect(p_added)
end
local LerpColorModule =
loadstring(game:HttpGet("https://pastebin.com/raw/wRnsJeid"))()
local HealthBarLerp = LerpColorModule:Lerp(Color3.fromRGB(255, 0, 0),
Color3.fromRGB(0, 255, 0))
return c
end
local RadarInfo = {
Position = Vector2.new(200, 200),
Radius = 100,
Scale = 1, -- Determinant factor on the effect of the relative position for
the 2D integration
RadarBack = Color3.fromRGB(10, 10, 10),
RadarBorder = Color3.fromRGB(75, 75, 75),
LocalPlayerDot = Color3.fromRGB(255, 255, 255),
PlayerDot = Color3.fromRGB(60, 170, 255),
Team = Color3.fromRGB(0, 255, 0),
Enemy = Color3.fromRGB(255, 0, 0),
Health_Color = true,
Team_Check = true
}
PlayerDot.Color = RadarInfo.PlayerDot
if RadarInfo.Team_Check then
if plr.TeamColor == Player.TeamColor then
PlayerDot.Color = RadarInfo.Team
else
PlayerDot.Color = RadarInfo.Enemy
end
end
if RadarInfo.Health_Color then
PlayerDot.Color = HealthBarLerp(hum.Health / hum.MaxHealth)
end
else
PlayerDot.Visible = false
if Players:FindFirstChild(plr.Name) == nil then
PlayerDot:Remove()
c:Disconnect()
end
end
end)
end
coroutine.wrap(Update)()
end
Players.PlayerAdded:Connect(function(v)
if v.Name ~= Player.Name then
PlaceDot(v)
end
LocalPlayerDot:Remove()
LocalPlayerDot = NewLocalDot()
end)
-- Loop
coroutine.wrap(function()
local c
c = game:service("RunService").RenderStepped:Connect(function()
if LocalPlayerDot ~= nil then
LocalPlayerDot.Color = RadarInfo.LocalPlayerDot
LocalPlayerDot.PointA = RadarInfo.Position + Vector2.new(0, -6)
LocalPlayerDot.PointB = RadarInfo.Position + Vector2.new(-3, 6)
LocalPlayerDot.PointC = RadarInfo.Position + Vector2.new(3, 6)
end
RadarBackground.Position = RadarInfo.Position
RadarBackground.Radius = RadarInfo.Radius
RadarBackground.Color = RadarInfo.RadarBack
RadarBorder.Position = RadarInfo.Position
RadarBorder.Radius = RadarInfo.Radius
RadarBorder.Color = RadarInfo.RadarBorder
end)
end)()
-- Draggable
local inset = game:service("GuiService"):GetGuiInset()
UIS.InputEnded:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 then
dragging = false
end
end)
coroutine.wrap(function()
local dot = NewCircle(1, Color3.fromRGB(255, 255, 255), 3, true, 1)
local c
c = game:service("RunService").RenderStepped:Connect(function()
if (Vector2.new(Mouse.X, Mouse.Y + inset.Y) -
RadarInfo.Position).magnitude < RadarInfo.Radius then
dot.Position = Vector2.new(Mouse.X, Mouse.Y + inset.Y)
dot.Visible = true
else
dot.Visible = false
end
if dragging then
RadarInfo.Position = Vector2.new(Mouse.X, Mouse.Y) + offset
end
end)
end)()
--[[ Example:
wait(3)
RadarInfo.Position = Vector2.new(300, 300)
RadarInfo.Radius = 150
RadarInfo.RadarBack = Color3.fromRGB(50, 0, 0)
]]
end
-- // Desync \\ --
if uwuAUFHAUYFGHYUFHFUHJ.Enabled then
--.gg/ozl
--[[
┏━┓┏━━┓┏┓
┃┃┃┣━━┃┃┃
┃┃┃┃━━┫┃┗┓
┗━┛┗━━┛┗━┛
-- // anti curve
function AntiCurve()
local character = game.Players.LocalPlayer.Character
if getgenv().Loot.SilentAim.Anti_Curve and character and
character.PrimaryPart then
local characterCf = character.PrimaryPart.CFrame
local target = self.Character.HumanoidRootPart
local targetPos = target.Position
local charPos = character.PrimaryPart.Position
character:SetPrimaryPartCFrame(CFrame.lookAt(charPos, v3(targetPos.X,
charPos.Y, targetPos.Z)))
wait()
character:SetPrimaryPartCFrame(characterCf)
end
end
if Loot.Options.MuteBoomBox then
for _, v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:IsA("Sound") and not (v.Name == "ShootSound" or v.Name ==
"NoAmmo") then
v.Volume = 0
end
end
end
if Loot.Options.AutoLowGfx then
for _, v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:IsA("BasePart") and not v.Parent:FindFirstChild("Humanoid") then
v.Material = Enum.Material.SmoothPlastic
if v:IsA("Texture") then
v:Destroy()
end
end
end
end
-- // remove seats
if Loot.Options.RemoveSeats then
for _, v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:IsA("Seat") then
v:Destroy()
end
end
end
-- // Texture \\ --
if getgenv().Loot.Texture.Enabled then
for _, v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:IsA("BasePart") and not v.Parent:FindFirstChild("Humanoid") then
v.Material = getgenv().Loot.Texture.Material
v.Color = getgenv().Loot.Texture.Color
if v:IsA("Texture") then
v:Destroy()
end
end
end
end