Skip to content

Commit

Permalink
Create MikaEspDummy.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinGoGaming authored Sep 3, 2023
1 parent f2c98fe commit a8e9037
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/MikaEspDummy.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
MikaUITheme = "Blackout"
game.Players.LocalPlayer:SetAttribute("themeOfMika", MikaUITheme)

local MikaESP = loadstring(game:HttpGet("https://x.klash.dev/libraries/MikaESP/rewrite"))()
local MikaUI = loadstring(game:HttpGet("https://x.klash.dev/libraries/MikaUI.lua"))()
local ESPs = MikaUI:AddTab("ESPs")
ESPs.InsertCheckbox("Head ESP", false, function(value)
for k, v in pairs(game.Players:GetPlayers()) do
if value then
MikaESP:Insert(v.Character.Head, v.Name, Color3.fromRGB(255, 0, 0))
else
MikaESP:RemovePartUsingText(v.Name)
end
end
end)
MikaUI:Init("esp test")
MikaESP:Init()

0 comments on commit a8e9037

Please sign in to comment.