1 | local notificationText = "godmode is automatikally on, turn off\nthen on again to turn it off" |
2 | local notificationDuration = 4.6 |
3 | |
4 | local ScreenGui = Instance.new("ScreenGui") |
5 | ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") |
6 | |
7 | local TextLabel = Instance.new("TextLabel") |
8 | TextLabel.Parent = ScreenGui |
9 | TextLabel.Position = UDim2.new(0.5, 0, 0.5, 0) |
10 | TextLabel.Size = UDim2.new(0, 347, 0, 45) |
11 | TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) |
12 | TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) |
13 | TextLabel.TextSize = 15 |
14 | TextLabel.Text = notificationText |
15 | |
16 | wait(notificationDuration) |
17 | TextLabel:Destroy() |
18 | |
19 | |
20 | local player = game:GetService("Players").LocalPlayer |
21 | |
22 | local Library = loadstring(game:HttpGet("https://pastecode.dev/raw/o579xt86/mobileWally.jpg",true))() |
23 | |
24 | local uwu = Library:CreateWindow("Small Troll ui") |
25 | |
26 | uwu:AddToggle({text = "Godmode", callback = function(v) |
27 | getgenv().skriptgodmode = not v |
28 | print(v) |
29 | end}); |
30 | |
31 | uwu:AddToggle({text = "See Usernames", callback = function(v) |
32 | getgenv().esptog = v |
33 | print(v) |
34 | end}); |
35 | |
36 | uwu:AddToggle({text = "HiddenFling", callback = function(x) |
37 | if x then loadstring(game:HttpGet("https://pastecode.dev/raw/w4g226cm/hiddenfling-toggle.deb",true))(); |
38 | else |
39 | hiddenfling=false; |
40 | end |
41 | end}); |
42 | |
43 | local lulas = "by lulaslollipop🍭" |
44 | |
45 | uwu:AddFolder(lulas) |
46 | |
47 | -- [ SETTINGS WINDOW2 ] -- |
48 | |
49 | local function respawn() |
50 | game.Players.LocalPlayer.Character.Humanoid.Health = 0 |
51 | end; |
52 | local function serverhop() |
53 | loadstring(game:HttpGet("https://pastecode.dev/raw/1b4mlb6o/serverHop_.deb",true))() |
54 | end; |
55 | local function rejoin() |
56 | loadstring(game:HttpGet("https://pastecode.dev/raw/yz6cvds5/rejoin_.deb",true))() |
57 | end; |
58 | |
59 | local s = Library:CreateWindow("Settings") |
60 | |
61 | s:AddButton({text = "Respawn", callback = function() |
62 | respawn() |
63 | end}) |
64 | |
65 | s:AddButton({text = "ServerHop", callback = function() |
66 | serverhop() |
67 | end}) |
68 | |
69 | s:AddButton({text = "Rejoin", callback = function() |
70 | rejoin() |
71 | end}) |
72 | |
73 | Library:Init() |
74 | |
75 | |
76 | -- [ FUNKTIONS ] -- |
77 | |
78 | local textSize=13; |
79 | local red = 255,0,0 |
80 | |
81 | local esp_settings = { |
82 | textsize = textSize, |
83 | colour = red |
84 | } |
85 | local gui = Instance.new("BillboardGui") |
86 | local esp = Instance.new("TextLabel", gui) |
87 | gui.Name = "kraxked esp" |
88 | gui.ResetOnSpawn = false |
89 | gui.AlwaysOnTop = true |
90 | gui.LightInfluence = 0 |
91 | gui.Size = UDim2.new(1.75, 0, 1.75, 0) |
92 | esp.BackgroundColor3 = Color3.fromRGB(255, 255, 255) |
93 | esp.Text = "" |
94 | esp.Size = UDim2.new(0.0001, 0.00001, 0.0001, 0.00001) |
95 | esp.BorderSizePixel = 4 |
96 | esp.BorderColor3 = Color3.new(esp_settings.colour) |
97 | esp.BorderSizePixel = 0 |
98 | esp.Font = "GothamSemibold" |
99 | esp.TextSize = esp_settings.textsize |
100 | esp.TextColor3 = Color3.fromRGB(esp_settings.colour) -- text colour |
101 | |
102 | task.spawn(function() |
103 | game:GetService("RunService").RenderStepped:Connect(function() |
104 | if getgenv().esptog then |
105 | for i, v in pairs(game:GetService("Players"):GetPlayers()) do |
106 | if |
107 | v ~= game:GetService("Players").LocalPlayer |
108 | and v.Character.Head:FindFirstChild("kraxked esp") == nil |
109 | then |
110 | esp.Text = "{" .. v.Name .. "}" |
111 | gui:Clone().Parent = v.Character.Head |
112 | end |
113 | end |
114 | else |
115 | for i, v in pairs(game:GetService("Players"):GetPlayers()) do |
116 | if |
117 | v ~= game:GetService("Players").LocalPlayer |
118 | and v.Character.Head:FindFirstChild("kraxked esp") |
119 | then |
120 | local useresp = v.Character.Head:FindFirstChild("kraxked esp") |
121 | useresp:Destroy() |
122 | end |
123 | end |
124 | end |
125 | end) |
126 | end) |
127 | |
128 | task.spawn(function() |
129 | while task.wait() do |
130 | local parts = workspace:GetPartBoundsInRadius(player.Character:WaitForChild("HumanoidRootPart").Position, 10) |
131 | for _, part in ipairs(parts) do |
132 | part.CanTouch = getgenv().skriptgodmode |
133 | end |
134 | end |
135 | end) |