1 | --for i,v in ipairs(game.CoreGui:GetDescendants()) do |
2 | --if v.Name == "TextLabel" and v.Parent:IsA("ImageButton") and v:FindFirstChild("ImageLabel", true) then |
3 | --v.Parent.Parent:Remove() |
4 | -- break |
5 | -- end |
6 | --end |
7 | |
8 | --loading notif |
9 | local player = game.Players.LocalPlayer |
10 | local playerGui = player:WaitForChild("PlayerGui") |
11 | local notification = Instance.new("ScreenGui") |
12 | notification.Name = "notification" |
13 | notification.Parent = playerGui |
14 | |
15 | local Background = Instance.new("Frame") |
16 | Background.Size = UDim2.new(0, 500, 0, 85)--4:BG size, |
17 | Background.Position = UDim2.new(0.65, -200, 0.4, -50) --1:position,high=right,low=left |
18 | --3:low=up,high=down |
19 | Background.BackgroundColor3 = Color3.new(0, 0, 0) |
20 | Background.Parent = notification |
21 | |
22 | local countdownText = Instance.new("TextLabel") |
23 | countdownText.Text = "by lulas🍭 enjoy! (5)" |
24 | countdownText.TextColor3 = Color3.new(1, 1, 1) |
25 | countdownText.BackgroundColor3 = Color3.new(0, 0, 0, 0) |
26 | countdownText.TextSize = 15 |
27 | countdownText.Size = UDim2.new(1, 0, 1, 0) |
28 | countdownText.Parent = Background |
29 | |
30 | local countdown = 3 |
31 | local countdownInterval = 1 |
32 | |
33 | local function updateCountdown() |
34 | countdown = countdown - 1 |
35 | countdownText.Text = "godmode is auto-enabled, toggle on\nthen off to disable🍭 (" .. countdown .. ")" |
36 | |
37 | if countdown <= 0 then |
38 | -- código para executar quando atingir (0) |
39 | notification:Destroy() |
40 | else |
41 | |
42 | wait(countdownInterval) |
43 | updateCountdown() |
44 | end |
45 | end |
46 | |
47 | updateCountdown(); |
48 | |
49 | |
50 | --UWUWARE (wally ui lib) |
51 | local player = game:GetService("Players").LocalPlayer |
52 | local GMO = loadstring(game:HttpGet("https://pastecode.dev/raw/o579xt86/mobileWally.jpg",true))(); |
53 | |
54 | local gmode = GMO:CreateWindow("Godmode") |
55 | gmode:AddToggle({text = "Godmode", callback = function(v) |
56 | getgenv().skriptgodmode = not v |
57 | print(v) |
58 | end}) |
59 | |
60 | gmode:AddFolder("lulaslollipop🍭") |
61 | GMO:Init(); |
62 | loadstring(game:HttpGet("https://raw.githubusercontent.com/rrixh/uwuware/main/skripts/kustomAlert-rrixhmsgsendnotify", true))(); rrixh("skript by lulaslollipop🍭 enjoy"); |
63 | |
64 | task.spawn(function() |
65 | while task.wait() do |
66 | local parts = workspace:GetPartBoundsInRadius(player.Character:WaitForChild("HumanoidRootPart").Position, 10) |
67 | for _, part in ipairs(parts) do |
68 | part.CanTouch = getgenv().skriptgodmode |
69 | end |
70 | end |
71 | end) |
72 | |
73 | loadstring(game:HttpGet("https://rentry.co/kustomAlertV2-setup/raw",true))(); |
74 | rrixh("skript by lulaslollipop🍭 enjoy",3); |