1 | --UWUWARE (wally ui lib) |
2 | local player = game:GetService("Players").LocalPlayer |
3 | |
4 | local Library = loadstring(game:HttpGet("https://pastecode.dev/raw/o579xt86/mobileWally.jpg",true))() |
5 | |
6 | local uwu = Library:CreateWindow("Grand Skool Eskape") |
7 | uwu:AddToggle({text = "Godmode", callback = function(v) |
8 | getgenv().skriptgodmode = not v |
9 | print(v) |
10 | end}) |
11 | uwu:AddButton({text = "Fly", callback = function() |
12 | loadstring(game:HttpGet("https://pastecode.dev/raw/hiqjlfs0/unvrslflygui_lulaslollipop.jpg",true))() |
13 | end}) |
14 | uwu:AddFolder("❗️turn godmode off\nto get apples") |
15 | |
16 | uwu:AddFolder("skript by lulaslollipop🍭") |
17 | |
18 | Library:Init() |
19 | |
20 | task.spawn(function() |
21 | while task.wait() do |
22 | local parts = workspace:GetPartBoundsInRadius(player.Character:WaitForChild("HumanoidRootPart").Position, 10) |
23 | for _, part in ipairs(parts) do |
24 | part.CanTouch = getgenv().skriptgodmode |
25 | end |
26 | end |
27 | end) |