Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local BaseScript = Instance.new("ScreenGui", game.CoreGui)
- BaseScript.Name = "BaseScript"
- local LightingCheats = Instance.new("Frame", BaseScript)
- LightingCheats.Name = "LightingCheats"
- LightingCheats.BackgroundColor3 = Color3.new(0.266667, 0.27451, 0.329412)
- LightingCheats.BackgroundTransparency = 0.10000000149012
- LightingCheats.Position = UDim2.new(0.0990990996, 0, 0.0349161997, 0)
- LightingCheats.Size = UDim2.new(0, 190, 0, 293)
- LightingCheats.Active = true
- LightingCheats.Draggable = true
- local ESP = Instance.new("TextButton", LightingCheats)
- ESP.Name = "ESP"
- ESP.BackgroundColor3 = Color3.new(1, 1, 1)
- ESP.BackgroundTransparency = 1
- ESP.Position = UDim2.new(0, 0, 0.255972713, 0)
- ESP.Size = UDim2.new(0, 190, 0, 40)
- ESP.Font = Enum.Font.SourceSansLight
- ESP.Text = "Player ESP"
- ESP.TextColor3 = Color3.new(1, 1, 1)
- ESP.TextScaled = true
- ESP.TextSize = 14
- ESP.TextWrapped = true
- local InfStat = Instance.new("TextButton", LightingCheats)
- InfStat.Name = "IS"
- InfStat.BackgroundColor3 = Color3.new(1, 1, 1)
- InfStat.BackgroundTransparency = 1
- InfStat.Position = UDim2.new(0, 0, 0.395972713, 0)
- InfStat.Size = UDim2.new(0, 190, 0, 40)
- InfStat.Font = Enum.Font.SourceSansLight
- InfStat.Text = "Inf Stats"
- InfStat.TextColor3 = Color3.new(1, 1, 1)
- InfStat.TextScaled = true
- InfStat.TextSize = 14
- InfStat.TextWrapped = true
- local EESP = Instance.new("TextButton", LightingCheats)
- EESP.Name = "Enemyesp"
- EESP.BackgroundColor3 = Color3.new(1, 1, 1)
- EESP.BackgroundTransparency = 1
- EESP.Position = UDim2.new(0, 0, 0.525972713, 0)
- EESP.Size = UDim2.new(0, 190, 0, 40)
- EESP.Font = Enum.Font.SourceSansLight
- EESP.Text = "Enemy ESP"
- EESP.TextColor3 = Color3.new(1, 1, 1)
- EESP.TextScaled = true
- EESP.TextSize = 14
- EESP.TextWrapped = true
- local Name = Instance.new("TextLabel", LightingCheats)
- Name.Name = "Name"
- Name.BackgroundColor3 = Color3.new(1, 1, 1)
- Name.BackgroundTransparency = 1
- Name.BorderSizePixel = 0
- Name.Size = UDim2.new(0, 190, 0, 50)
- Name.Font = Enum.Font.SourceSansLight
- Name.Text = "Island_boii"
- Name.TextColor3 = Color3.new(1, 1, 1)
- Name.TextScaled = true
- Name.TextSize = 14
- Name.TextWrapped = true
- function PESPLoop()
- game:GetService('RunService').RenderStepped:connect(function()
- for i,v in next, game:GetService('Players'):GetPlayers() do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- local A = Instance.new("BillboardGui")
- local B = Instance.new("Frame", A)
- A.Parent = v.Character.Head
- A.Adornee = v.Character.Head
- A.ExtentsOffset = Vector3.new(0, 1, 0)
- A.AlwaysOnTop = true
- A.Size = UDim2.new(0, 5, 0, 5)
- A.StudsOffset = Vector3.new(0, 3, 0)
- B.ZIndex = 10
- B.BackgroundTransparency = 0.5
- B.Size = UDim2.new(2, 0, 2, 0)
- B.BackgroundColor3 = Color3.new(0,1,0)
- wait(1)
- B:Destroy()
- A:Destroy()
- end)
- end
- end
- end)
- end
- function EESPLoop()
- while wait() do
- for i,v in pairs(game.Workspace.NPCs:GetChildren()) do
- pcall(function()
- local A = Instance.new("BillboardGui")
- local B = Instance.new("Frame", A)
- A.Parent = v.Head
- A.Adornee = v.Head
- A.ExtentsOffset = Vector3.new(0, 1, 0)
- A.AlwaysOnTop = true
- A.Size = UDim2.new(0, 5, 0, 5)
- A.StudsOffset = Vector3.new(0, 3, 0)
- B.ZIndex = 10
- B.BackgroundTransparency = 0.5
- B.Size = UDim2.new(2, 0, 2, 0)
- B.BackgroundColor3 = Color3.new(1,0,0)
- wait(1)
- B:Destroy()
- A:Destroy()
- end)
- end
- end
- end
- ESP.MouseButton1Down:Connect(function()
- PESPLoop()
- end)
- InfStat.MouseButton1Down:Connect(function()
- while true do
- game.Players.LocalPlayer.Backpack.Config.Hunger.Value = math.huge
- game.Players.LocalPlayer.Backpack.Config.Thirst.Value = math.huge
- game.Players.LocalPlayer.Backpack.Config.Stamina.Value = math.huge
- wait()
- end
- end)
- EESP.MouseButton1Down:Connect(function()
- EESPLoop()
- end)
Advertisement
Add Comment
Please, Sign In to add comment