R

[uwu] 99 purple

public
rrixh Apr 27, 2024 Never 52
Clone
Plaintext 99purple_lulaslollipop.ppt 105 lines (87 loc) | 3.49 KB
1
--NOTIF,PURPLE
2
local player = game.Players.LocalPlayer
3
local playerGui = player:WaitForChild("PlayerGui")
4
local notification = Instance.new("ScreenGui")
5
notification.Name = "notification"
6
notification.Parent = playerGui
7
8
local Background = Instance.new("Frame")
9
Background.Size = UDim2.new(0, 500, 0, 100)--4:BG size,
10
Background.Position = UDim2.new(0.65, -200, 0.4, -50) --1:position,high=right,low=left
11
--3:low=up,high=down
12
Background.BackgroundColor3 = Color3.new(0, 0, 0)
13
Background.Parent = notification
14
15
local countdownText = Instance.new("TextLabel")
16
countdownText.Text = "by lulas🍭 enjoy! (5)"
17
countdownText.TextColor3 = Color3.new(1, 1, 1)
18
countdownText.BackgroundColor3 = Color3.new(0, 0, 0, 0)
19
countdownText.TextSize = 15
20
countdownText.Size = UDim2.new(1, 0, 1, 0)
21
countdownText.Parent = Background
22
23
local countdown = 3
24
local countdownInterval = 1
25
26
local function updateCountdown()
27
countdown = countdown - 1
28
countdownText.Text = "godmode is auto-enabled, toggle on\nthen off to disable🍭 (" .. countdown .. ")"
29
30
if countdown <= 0 then
31
-- código para executar quando atingir (0)
32
notification:Destroy()
33
else
34
35
wait(countdownInterval)
36
updateCountdown()
37
end
38
end
39
40
updateCountdown()
41
42
43
--UWUWARE (wally ui lib)
44
local player = game:GetService("Players").LocalPlayer
45
46
local Library = loadstring(game:HttpGet("https://pastecode.dev/raw/o579xt86/mobileWally.jpg",true))()
47
48
local uwu = Library:CreateWindow("99% Fail Obby")
49
50
uwu:AddButton({text = "Memorize Tiles(Purple)", callback = function()
51
--99 fail obby no lib purple
52
loadstring(game:HttpGet("https://pastecode.dev/raw/e6zuwuzr/99fail.purplememory_lulaslollipop.xlsx",true))()
53
print("99% fail obby skript by @lulaslollipop🍭 on Roblox // @rrixh on diskord // @siipped on telegram")
54
end})
55
56
uwu:AddButton({text = "Fly gui", callback = function()
57
loadstring(game:HttpGet("https://pastecode.dev/raw/hiqjlfs0/unvrslflygui_lulaslollipop.jpg",true))()
58
end})
59
60
uwu:AddToggle({text = "Godmode", callback = function(v)
61
getgenv().skriptgodmode = not v
62
print(v)
63
end})
64
65
uwu:AddToggle({text = "Inf Jump", callback = function(jumping)
66
if jumping then
67
getgenv().InfJump = true
68
spawn(function()
69
while getgenv().InfJump == true do
70
game:GetService("UserInputService").JumpRequest:connect(function()
71
if getgenv().InfJump == true then
72
game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
73
end
74
end)
75
wait()
76
end
77
end)
78
else
79
getgenv().InfJump = false
80
end
81
end})
82
83
uwu:AddToggle({text = "Inf Sprint", callback = function(sprinting)
84
if sprinting then
85
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 22.2
86
else
87
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
88
end
89
end});
90
91
uwu:AddSlider({text = "Speed", min = 0, max = 150, callback = function(speed)
92
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
93
end});
94
95
local zywbx1b9k7e659863ppqjiq22ua4ri="@lulaslollipop🍭";
96
uwu:AddFolder(zywbx1b9k7e659863ppqjiq22ua4ri)
97
Library:Init();
98
task.spawn(function()
99
while task.wait() do
100
local parts = workspace:GetPartBoundsInRadius(player.Character:WaitForChild("HumanoidRootPart").Position, 10)
101
for _, part in ipairs(parts) do
102
part.CanTouch = getgenv().skriptgodmode
103
end
104
end
105
end);