R

godmode lollypop myzaza

public
rrixh Jan 20, 2024 Never 71
Clone
Plaintext myzaza-godmode_lulaslollipop 33 lines (28 loc) | 1022 Bytes
1
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/Revenant", true))()
2
Library.DefaultColor = Color3.fromRGB(50,205,50)
3
4
Library:Notification({
5
Text = "NIGGAMODE! jk godmode",
6
Duration = 5
7
})
8
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/Revenant", true))()
9
Library.DefaultColor = Color3.fromRGB(50,205,50)
10
11
Library:Notification({
12
Text = "press Z to toggle",
13
Duration = 6
14
})
15
16
-- Z to Toggle
17
local player = game:GetService("Players").LocalPlayer
18
local UIS = game:GetService("UserInputService")
19
local lollypop = false
20
21
UIS.InputBegan:Connect(function(input, GPE)
22
if GPE then return end
23
if input.KeyCode == Enum.KeyCode.Z then
24
lollypop = not lollypop
25
end
26
end)
27
28
while task.wait() do
29
local parts = workspace:GetPartBoundsInRadius(player.Character:WaitForChild("HumanoidRootPart").Position, 10)
30
for _, part in ipairs(parts) do
31
part.CanTouch = lollypop
32
end
33
end