R

v3.1

public
rrixh Apr 20, 2024 Never 76
Clone
Plaintext v3.1lollypop.old.xls 1156 lines (855 loc) | 41.32 KB
1
-- Gui to Lua LOLLYPOPHUB V3.1 UPDATED
2
-- Version: 3.1
3
-- toggle button added
4
-- Instanxes:
5
6
7
local Library = loadstring(game:HttpGet("https://pastecode.dev/raw/MsVeci5gQG/kavomobileUi",true))()
8
9
local lollyhub = "Lollypop Hub🍭 | V3.1", "lulaTheme" " |" .. identifyexecutor()
10
local Window = Library.CreateLib(lollyhub)
11
12
--- yum lollypop hub V3
13
-- LightTheme
14
-- DarkTheme
15
-- GrapeTheme
16
-- BloodTheme
17
-- Ocean
18
-- Midnight
19
-- Sentinel
20
-- Synapse
21
22
--skripts tab
23
local Skripts = Window:NewTab("Skripts")
24
local SkriptsSection = Skripts:NewSection("Skript hub by lulaslollipopπŸ­πŸ˜‹")
25
26
SkriptsSection:NewButton("99% fail impossible obby", "purple = βœ…, red = ❌, green = βœ…, tile broke, or πŸ”₯ ", function()
27
-- lulas 99 fail memory skript
28
loadstring(game:HttpGet(('https://pastebin.com/raw/DhLMep63'),true))()
29
end)
30
31
SkriptsSection:NewButton("Heaven Map for 99% fail", "just anti-lag", function()
32
loadstring(game:HttpGet("https://pastebin.com/raw/RW7ZT29m"))()
33
end)
34
35
SkriptsSection:NewButton("EXEKUTE SKRIPT FROM XHAT", "exekute a skript frm xhat box",
36
function()loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/chat-executor/main/chat-executor",true))()
37
end)
38
39
local SkriptsSection = Skripts:NewSection("Skripts")
40
41
--infjump.Konnekt
42
SkriptsSection:NewToggle("Infinite jump", "no jump limit", function(toggled)
43
if toggled then
44
getgenv().InfJump = true
45
spawn(function()
46
while getgenv().InfJump == true do
47
game:GetService("UserInputService").JumpRequest:connect(function()
48
if getgenv().InfJump == true then
49
game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
50
end
51
end)
52
wait()
53
end
54
end)
55
else
56
getgenv().InfJump = false
57
end
58
end)
59
--infjump.Diskonnekt
60
61
SkriptsSection:NewButton("WALKSPEED GUI", "+ -", function()
62
loadstring(game:HttpGet("https://pastebin.com/raw/2gGvc9ya"))()
63
end)
64
65
SkriptsSection:NewButton("less lag", "FX remover", function()
66
local ToDisable = {
67
Textures = true,
68
VisualEffects = true,
69
Parts = true,
70
Particles = true,
71
Sky = true
72
}
73
74
local ToEnable = {
75
FullBright = false
76
}
77
78
local Stuff = {}
79
80
for _, v in next, game:GetDescendants() do
81
if ToDisable.Parts then
82
if v:IsA("Part") or v:IsA("Union") or v:IsA("BasePart") then
83
v.Material = Enum.Material.SmoothPlastic
84
table.insert(Stuff, 1, v)
85
end
86
end
87
88
if ToDisable.Particles then
89
if v:IsA("ParticleEmitter") or v:IsA("Smoke") or v:IsA("Explosion") or v:IsA("Sparkles") or v:IsA("Fire") then
90
v.Enabled = false
91
table.insert(Stuff, 1, v)
92
end
93
end
94
95
if ToDisable.VisualEffects then
96
if v:IsA("BloomEffect") or v:IsA("BlurEffect") or v:IsA("DepthOfFieldEffect") or v:IsA("SunRaysEffect") then
97
v.Enabled = false
98
table.insert(Stuff, 1, v)
99
end
100
end
101
102
if ToDisable.Textures then
103
if v:IsA("Decal") or v:IsA("Texture") then
104
v.Texture = ""
105
table.insert(Stuff, 1, v)
106
end
107
end
108
109
if ToDisable.Sky then
110
if v:IsA("Sky") then
111
v.Parent = nil
112
table.insert(Stuff, 1, v)
113
end
114
end
115
end
116
117
game:GetService("TestService"):Message("Effects Disabler Script : Successfully disabled "..#Stuff.." assets / effects. Settings :")
118
119
for i, v in next, ToDisable do
120
print(tostring(i)..": "..tostring(v))
121
end
122
123
if ToEnable.FullBright then
124
local Lighting = game:GetService("Lighting")
125
126
Lighting.FogColor = Color3.fromRGB(255, 255, 255)
127
Lighting.FogEnd = math.huge
128
Lighting.FogStart = math.huge
129
Lighting.Ambient = Color3.fromRGB(255, 255, 255)
130
Lighting.Brightness = 5
131
Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
132
Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
133
Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
134
Lighting.Outlines = true
135
end
136
end)
137
138
SkriptsSection:NewButton("Mood Switxher", "yellow grey", function()
139
loadstring(game:HttpGet('https://pastebin.com/raw/djAd7g2W'))()
140
end)
141
142
SkriptsSection:NewButton("Aimbot", "simple aimbot skript by me", function()
143
-- AIMBOT by lulaslollipop
144
loadstring(game:HttpGet("https://textbin.net/raw/uv6wy7lbdb"))()
145
end)
146
147
SkriptsSection:NewButton("Make ALL players say 🍭🍭🍭🍭🍭", "hahaahhahah XD", function()
148
game.Players.LocalPlayer:Kick("Your account has been banned: PERMANENT")
149
end)
150
151
SkriptsSection:NewButton("Fly GUI V3", "mobile fly",
152
function()-- fly gui v3
153
loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-FLY-GUI-V3-8402"))()
154
end)
155
156
SkriptsSection:NewButton("Fly GUI B&W", "modded",
157
function()loadstring(game:HttpGet("https://pastebin.com/raw/TeNifRrX"))()
158
end)
159
160
SkriptsSection:NewButton("FLY HD ADMIN", "mobile fly HD ADMIN version",
161
function()-- FLY HD ADMIN
162
loadstring(game:HttpGet("https://raw.githubusercontent.com/TakeModzz/Ignore-00000/main/Ignore"))()
163
end)
164
165
SkriptsSection:NewButton("Universal Fly GUI", "speed setter",
166
function()loadstring(game:HttpGet("https://pastebin.com/raw/YvKv4AuY"))()
167
end)
168
169
SkriptsSection:NewButton("BETTER Teleport To Player GUI", "V2",
170
function()loadstring(game:HttpGet("https://gist.githubusercontent.com/DagerFild/b4776075a0d26ef04394133ee6bd2081/raw/0ed51ac94057d2d9a9f00e1b037b9011c76ca54a/tpGUI", true))()
171
end)
172
173
SkriptsSection:NewButton("Lag Switxh V2", "might inkrease FX too,πŸ›œ",
174
function()loadstring(game:HttpGet(('https://raw.githubusercontent.com/0Ben1/fe/main/Protected - 2023-05-28T225112.055.lua.txt'),true))()
175
end)
176
177
SkriptsSection:NewButton("Transform into a Pineapple 🍍", "it was ananas fault", function()
178
game.Players.LocalPlayer:Kick("You have been banned by ANANAS! you are a noob 🍍")
179
end)
180
181
SkriptsSection:NewButton("Translate Messages", "type >(language)",
182
function()loadstring(game:HttpGet("https://pastebin.com/raw/8PRDbzXG"))()
183
end)
184
185
SkriptsSection:NewButton("Mobile Keyboard", "why u looking here",
186
function()loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
187
end)
188
189
SkriptsSection:NewButton("KEYBIND STROKES V2", "WASD and spaxe keys",
190
function()-- KEYSTROKES GUI V2
191
loadstring(game:HttpGet(('https://pastefy.app/Te4dwSw2/raw'),true))()
192
end)
193
194
--[[
195
{"Esc", "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12"},
196
{"~", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "="},
197
{"Tab", "Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", "[", "]"},
198
{"CapsLock", "A", "S", "D", "F", "G", "H", "J", "K", "L", ";", "'", "\\"},
199
{"Shift", "Z", "X", "C", "V", "B", "N", "M", ",", ".", "/"},
200
{"Ctrl", "Win", "Alt", "Space", "Alt", "Menu", "Ctrl"}
201
]]
202
203
SkriptsSection:NewButton("GENERATE ANY KEYBIND", "keyboard letters generator (useful)",
204
function()loadstring(game:HttpGet(('https://pastefy.app/Ujm4HWxh/raw'),true))()
205
end)
206
207
SkriptsSection:NewButton("MOUSE KURSOR", "gives u a mouse kursor touxh",
208
function()loadstring(game:HttpGet(('https://pastefy.app/58d8d52G/raw'),true))()
209
end)
210
211
SkriptsSection:NewButton("GodMode", "no death 99% fail only",
212
function()-- fe brixk toggle press Z
213
loadstring(game:HttpGet("https://pastebin.com/raw/6g3h9cDB"))()
214
end)
215
216
SkriptsSection:NewButton("GodMode V2", "no death 99% fail and survive kill brixks",
217
function()-- fe brixk toggle
218
loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/ignore-touchinterests/main/main",true))()
219
end)
220
221
SkriptsSection:NewButton("fast animations", "player animation will be sped up",
222
function()-- FAST animations
223
loadstring(game:HttpGet("https://scriptblox.com/raw/Fast-Animation-FE_744"))()
224
end)
225
226
SkriptsSection:NewButton("old animation", "r6 only",
227
function()loadstring(game:HttpGet("https://pastebin.com/raw/0ZPiK5ci"))()
228
end)
229
230
SkriptsSection:NewButton("Better ROBLOX", "red roblox w stat info",
231
function()loadstring(game:HttpGet("https://eternityhub.xyz/BetterRoblox/Loader"))()
232
end)
233
234
SkriptsSection:NewButton("2016 roblox UI", "old ui",
235
function()loadstring(game:HttpGet('https://raw.githubusercontent.com/kosuke14/REBOYHub/main/games/2016_Roblox.lua'))()
236
end)
237
238
SkriptsSection:NewButton("RAINBOW MAP", "u already know",
239
function()--RAINBOW MAP
240
while true do
241
for _, part in ipairs(workspace:GetDescendants()) do
242
if part:IsA("BasePart") then
243
local r = math.random()
244
local g = math.random()
245
local b = math.random()
246
part.BrickColor = BrickColor.new(Color3.new(r, g, b))
247
end
248
end
249
wait(0.5)
250
end
251
end)
252
253
SkriptsSection:NewButton("SAVE TELEPORT LOKATION", "stand where u want and push add",
254
function()loadstring(game:HttpGet(('https://raw.githubusercontent.com/0Ben1/fe/main/Tp%20Place%20GUI'),true))()
255
end)
256
257
SkriptsSection:NewButton("Spy CCTV Kamera", "spy",
258
function()loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/CCTV%20Camera'))()
259
end)
260
261
SkriptsSection:NewButton("TOGGLE INVISIBILITY", "others wont see bloxks",
262
function()-- toggle invisibility
263
loadstring(game:HttpGet("https://pastebin.com/raw/HrbT6bNK",true))()
264
end)
265
266
SkriptsSection:NewButton("Freeze kamera", "pov freeze",
267
function()loadstring(game:HttpGet('https://pastebin.com/raw/T0S0RPTW'))()
268
end)
269
270
SkriptsSection:NewButton("KOLLISION", "go thru players or not",
271
function()loadstring(game:HttpGet(('https://raw.githubusercontent.com/0Ben1/fe/main/Collision.txt'),true))()
272
end)
273
274
SkriptsSection:NewButton("OP SUPER SKREEN STRETXH", "better skreen",
275
function()local camera = workspace.CurrentCamera
276
local settings = {
277
["Aspect Ratio"] = true, --// leave it like this if i don't know what You're doing
278
["Ratio Value"] = 0.6 --// leave it like this if i don't know what You're doing
279
}
280
281
local oldNewindex
282
283
oldNewindex = hookmetamethod(game, "__newindex", function(object, propertyName, propertyValue)
284
if object == camera and propertyName == "CFrame" then
285
if settings["Aspect Ratio"] then
286
propertyValue = propertyValue * CFrame.new(0, 0, 0, 1, 0, 0, 0, settings["Ratio Value"], 0, 0, 0, 1)
287
end
288
end
289
return oldNewindex(object, propertyName, propertyValue)
290
end)
291
end)
292
293
SkriptsSection:NewButton("Never Ending Bloxk Spawner", "good for lagging servers",
294
function()local player = game.Players.LocalPlayer
295
local character = player.Character or player.CharacterAdded:Wait()
296
local part = Instance.new("Part")
297
part.BrickColor = BrickColor.new("Bright blue")
298
part.Size = Vector3.new(5, 5, 5)
299
300
while true do
301
local position = character.PrimaryPart.Position
302
local randomOffset = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
303
part:Clone().Parent = workspace
304
part.Position = position + randomOffset
305
wait(0.1) -- Adjust the delay between spawns as desired
306
end
307
end)
308
309
SkriptsSection:NewButton("Kustom Sitting Animations", "r6 (some r15 games)",
310
function()loadstring(game:HttpGet(('https://pastefy.app/XKxQtK2K/raw'),true))()
311
end)
312
313
SkriptsSection:NewButton("Free emotes", "free r15 robux emotes",
314
function()loadstring(game:HttpGet("https://pastebin.com/raw/eCpipCTH"))()
315
end)
316
317
SkriptsSection:NewButton("KLEAR MESSAGES", "prints a huge text msg",
318
function()game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»βΈ»", "All")
319
end)
320
321
SkriptsSection:NewButton("Infinite Sprint", "no speed limit, inkreases speed",
322
function()-- fe parkour
323
loadstring(game:HttpGet("https://pastebin.com/raw/R5YR13pG"))()
324
end)
325
326
SkriptsSection:NewButton("R15 to R6", "only work if u are r15",
327
function()loadstring(game:HttpGet("https://raw.githubusercontent.com/Imagnir/r6_anims_for_r15/main/r6_anims.lua", true))()
328
end)
329
330
SkriptsSection:NewButton("Noklip", "thru walls and objs",
331
function()loadstring(game:HttpGet("https://pastebin.com/raw/3wf2wpBW"))()
332
end)
333
334
SkriptsSection:NewButton("Spektate", "spektate players",
335
function()loadstring(game:HttpGet("https://pastebin.com/raw/daM0ut53"))()
336
end)
337
338
SkriptsSection:NewButton("Arkeus X Exekutor", "android exekutor works for ios",
339
function()loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/chillz-workshop/main/Arceus%20X%20V3"))()
340
end)
341
342
SkriptsSection:NewButton("Show Usernames", "shows all usernames and esp",
343
function()loadstring(game:HttpGet("https://pastebin.com/raw/hpMC6ULU"))()
344
end)
345
346
SkriptsSection:NewButton("Shadow ESP", "see players thru walls but shadows",
347
function()loadstring(game:HttpGet("https://pastebin.com/raw/QQqiFGTE"))()
348
end)
349
350
SkriptsSection:NewButton("Purple ESP", "see players highlighted purple",
351
function()loadstring(game:HttpGet("https://pastebin.com/raw/7K1Jhmck"))()
352
end)
353
354
355
356
357
-- admin skripts
358
local Admin = Window:NewTab("Admin")
359
local AdminSection = Admin:NewSection("Admin Kommands")
360
361
AdminSection:NewButton("Infinite Yield", "type the kommand in the kommand bar", function()
362
loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
363
end)
364
365
AdminSection:NewButton("Fates Admin", "default prefix :", function()
366
loadstring(game:HttpGet("https://raw.githubusercontent.com/fatesc/fates-admin/main/main.lua"))()
367
end)
368
369
AdminSection:NewButton("Reviz Admin", "default prefix ; say ;cmds", function()
370
loadstring(game:HttpGet("https://pastebin.com/raw/RqaZUrBZ"))()
371
end)
372
373
local AdminSection = Admin:NewSection("Bonus😁")
374
375
AdminSection:NewButton("Nameless Admin", "type ;cmds", function()
376
loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source"))();
377
end)
378
379
local AdminSection = Admin:NewSection("MORE")
380
381
AdminSection:NewButton("Annoying Admin", "type .cmds and then /console to see kmd list", function()
382
loadstring(game:HttpGet(('https://raw.githubusercontent.com/TheMightySource/FE-Annoying-Admin/main/Main.lua'),true))()
383
end)
384
385
AdminSection:NewButton("Simple Admin", "type .cmds, say (.set prefix ;) to set ; instead of .", function()loadstring(game:HttpGet('https://pastebin.com/raw/3hDQcTaD'))()
386
end)
387
388
389
390
-- Fun SKRIPTS
391
local Fun = Window:NewTab("Fun")
392
local FunSection = Fun:NewSection("😱🍭")
393
local FunSection = Fun:NewSection("Anims")
394
395
FunSection:NewButton("Lolly Animations", "work r15 and r6", function()
396
loadstring(game:HttpGet('https://raw.githubusercontent.com/yeerma/1/main/the_greatest_script_ever_made'))()
397
end)
398
399
FunSection:NewButton("Energyze Animations", "work r15 and r6", function()loadstring(game:HttpGet(('https://pastebin.com/raw/1p6xnBNf'),true))()
400
end)
401
402
local FunSection = Fun:NewSection("Message Fun")
403
404
FunSection:NewButton("Xhat Troll", "type for others", function()
405
loadstring(game:HttpGet('https://pastebin.com/raw/MBpnp3yS'))()
406
end)
407
408
FunSection:NewButton("W Rizz GUI", "pixkup lines (skroll down)", function()
409
loadstring(game:HttpGet("https://pastebin.com/raw/pPMRh5YJ"))()
410
end)
411
412
FunSection:NewButton("Auto Exkuse", "auto msg wen u die", function()
413
getgenv().dmsgs = {
414
deathmessages = {"i was lagging", "that wasnt fair", "bruh thats kap", "i wasnt paying attention", "i was doing something", "my mom kalled me", "that wasnt fair", "wow bro"}
415
}
416
--[[
417
Auto-Exkuse
418
]]--
419
loadstring(game:HttpGet("https://raw.githubusercontent.com/goldmoments/auto-excuse/main/Script"))("Auto-Exkuse Script | lulaslollipoo#0140")
420
end)
421
422
FunSection:NewButton("Kopy Messages", "repeats all players messages", function()local ReplicatedStorage = game:FindService("ReplicatedStorage")
423
local ChatEvents = ReplicatedStorage:WaitForChild("DefaultChatSystemChatEvents")
424
local OnMessageEvent = ChatEvents:WaitForChild("OnMessageDoneFiltering")
425
local SayMessageRequest = ChatEvents:WaitForChild("SayMessageRequest")
426
427
if not SayMessageRequest:IsA("RemoteEvent") or not OnMessageEvent:IsA("RemoteEvent") then return end
428
429
local ChatLegth = require(game:FindService("Chat"):WaitForChild("ClientChatModules"):WaitForChild("ChatSettings")).MaximumMessageLength
430
local lp = game:FindService("Players").LocalPlayer.Name
431
432
OnMessageEvent.OnClientEvent:Connect(function(data)
433
if not data then return end
434
local player = tostring(data.FromSpeaker)
435
if player == lp then return end
436
local message = tostring(data.Message)
437
if (message):len() <= (ChatLegth-7) then
438
SayMessageRequest:FireServer(('\%s'):format(message,""),tostring(data.OriginalChannel))
439
end
440
end)
441
end)
442
443
FunSection:NewButton("Nerd Quote", " repeats all msgs with a nerd quote", function()local ReplicatedStorage = game:FindService("ReplicatedStorage")
444
local ChatEvents = ReplicatedStorage:WaitForChild("DefaultChatSystemChatEvents")
445
local OnMessageEvent = ChatEvents:WaitForChild("OnMessageDoneFiltering")
446
local SayMessageRequest = ChatEvents:WaitForChild("SayMessageRequest")
447
448
if not SayMessageRequest:IsA("RemoteEvent") or not OnMessageEvent:IsA("RemoteEvent") then return end
449
450
local ChatLegth = require(game:FindService("Chat"):WaitForChild("ClientChatModules"):WaitForChild("ChatSettings")).MaximumMessageLength
451
local lp = game:FindService("Players").LocalPlayer.Name
452
453
OnMessageEvent.OnClientEvent:Connect(function(data)
454
if not data then return end
455
local player = tostring(data.FromSpeaker)
456
if player == lp then return end
457
local message = tostring(data.Message)
458
if (message):len() <= (ChatLegth-7) then
459
SayMessageRequest:FireServer(('\"%s\"%s'):format(message,"πŸ€“"),tostring(data.OriginalChannel))
460
end
461
end)
462
end)
463
464
FunSection:NewButton("Rainbow", "enables xhat bubble and see msg frm far away", function()
465
--enables bubble chat also
466
467
textcolour = Color3.new(0,0,0)
468
469
game:GetService("Chat").BubbleChatEnabled = true
470
471
coroutine.wrap(function()
472
473
while wait() do
474
475
for i = 0,255,10 do
476
477
textcolour = Color3.new(255/255,i/255,0/255)
478
479
wait()
480
481
end
482
483
for i = 255,0,-10 do
484
485
textcolour = Color3.new(i/255,255/255,0/255)
486
487
wait()
488
489
end
490
491
for i = 0,255,10 do
492
493
textcolour = Color3.new(0/255,255/255,i/255)
494
495
wait()
496
497
end
498
499
for i = 255,0,-10 do
500
501
textcolour = Color3.new(0/255,i/255,255/255)
502
503
wait()
504
505
end
506
507
for i = 0,255,10 do
508
509
textcolour = Color3.new(i/255,0/255,255/255)
510
511
wait()
512
513
end
514
515
for i = 255,0,-10 do
516
517
textcolour = Color3.new(255/255,0/255,i/255)
518
519
wait()
520
521
end
522
523
end
524
525
end)()
526
527
local settings = {
528
529
}
530
531
while wait() do
532
533
pcall(function()
534
535
game:GetService("Chat"):SetBubbleChatSettings({
536
537
TextColor3 = textcolour,
538
539
-- The amount of time, in seconds, to wait before a bubble fades out.
540
541
BubbleDuration = 20,
542
543
-- The amount of messages to be displayed, before old ones disappear
544
545
-- immediately when a new message comes in.
546
547
MaxBubbles = 20,
548
549
-- Styling for the bubbles. These settings will change various visual aspects.
550
551
BackgroundColor3 = Color3.fromRGB(0, 0, 0),
552
553
TextSize = 16,
554
555
Font = Enum.Font.Ubuntu, --Enum.Font.GothamSemibold
556
557
Transparency = .1,
558
559
CornerRadius = UDim.new(0, 30),
560
561
TailVisible = true,
562
563
Padding = 8, -- in pixels
564
565
MaxWidth = 500, --in pixels
566
567
-- Extra space between the head and the billboard (useful if you want to
568
569
-- leave some space for other character billboard UIs)
570
571
VerticalStudsOffset = 0,
572
573
574
575
-- Space in pixels between two bubbles
576
577
BubblesSpacing = 3,
578
579
580
581
-- The distance (from the camera) that bubbles turn into a single bubble
582
583
-- with ellipses (...) to indicate chatter.
584
585
MinimizeDistance = 250,
586
587
-- The max distance (from the camera) that bubbles are shown at
588
589
MaxDistance = 2222,
590
591
})
592
593
end)
594
595
end
596
end)
597
598
FunSection:NewButton("SpamHub", "sing songs etx.", function()
599
loadstring(game:HttpGet(('https://raw.githubusercontent.com/ColdStep2/Chatdestroyer-Hub-V1/main/Chatdestroyer%20Hub%20V1'),true))()
600
end)
601
602
local FunSection = Fun:NewSection("Humanoid")
603
604
FunSection:NewButton("Destroy Body", "yea", function()
605
loadstring(game:HttpGet("https://pastebin.com/raw/naRUdxrc", true))()
606
end)
607
608
local FunSection = Fun:NewSection("More fun")
609
610
FunSection:NewButton("fake lag", "lag for fun",
611
function()loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/Fe%20Fake%20Lag%20Obfuscator'))()
612
end)
613
614
-- tools
615
local Tools = Window:NewTab("Tools")
616
local ToolsSection = Tools:NewSection("Tools")
617
618
ToolsSection:NewButton("BTools", "building tools", function()
619
a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
620
a.BinType = 2
621
b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
622
b.BinType = 3
623
c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
624
c.BinType = 4
625
end)
626
627
ToolsSection:NewButton("Teleknesis", "works in games like brookhaven,dahood etx.", function()
628
loadstring(game:HttpGet("https://pastebin.com/raw/vVze4jgA",true))()
629
end)
630
631
ToolsSection:NewButton("Super Tools", "kool toools", function()
632
loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe/main/Super%20tools"))()
633
end)
634
635
ToolsSection:NewButton("Tp Tool", "equip and press to tele anywhere", function()
636
mouse = game.Players.LocalPlayer:GetMouse()
637
tool = Instance.new("Tool")
638
tool.RequiresHandle = false
639
tool.Name = "Equip to Klixk Tp"
640
tool.Activated:connect(function()
641
local pos = mouse.Hit+Vector3.new(0,2.5,0)
642
pos = CFrame.new(pos.X,pos.Y,pos.Z)
643
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
644
end)
645
tool.Parent = game.Players.LocalPlayer.Backpack
646
end)
647
648
ToolsSection:NewButton("Tp To Player GUI", "equip and press to tele anywhere", function()
649
loadstring(game:HttpGet(("https://pastebin.com/raw/YNVbeqPy")))()
650
end)
651
652
ToolsSection:NewButton("Invisible Tool", "hides and unhides your body in the air", function()
653
loadstring(game:HttpGet("https://pastebin.com/raw/LraZZsaZ",true))()
654
end)
655
656
ToolsSection:NewButton("Disabled Tools", "key:AdminTools", function()
657
loadstring(game:HttpGet('https://pastebin.com/raw/0BsHnxbk'))()
658
end)
659
660
661
-- hubs and gui
662
local Hub = Window:NewTab("Hubs & GUIs")
663
local HubSection = Hub:NewSection("everything u needπŸ˜‹πŸ­")
664
665
HubSection:NewButton("ASTRAL HUB V3", "a hub", function()
666
loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/AstralHub/main/Main.lua", true))()
667
end)
668
669
HubSection:NewButton("Harsh Texh v7.4", "lots of skripts", function()
670
loadstring(game:HttpGet(('https://raw.githubusercontent.com/YellowGreg/HarshTech7.4-Beta/main/HarshTech7.4.lua'),true))()
671
end)
672
673
HubSection:NewButton("Skript Loader", "huge GUI", function()
674
loadstring(game:HttpGet("https://pastebin.com/raw/zzYSdwhk", true))()
675
end)
676
677
HubSection:NewButton("Games Hub V5 (fixed)", "fixed", function()
678
loadstring(game:HttpGet("https://raw.githubusercontent.com/TakeModzz/Games-Hub-V5-Selector-Fixed/main/Games"))()
679
end)
680
681
HubSection:NewButton("Anime Hub 😍", "v6.1", function()
682
loadstring(game:HttpGet("https://raw.githubusercontent.com/TakeModzz/Games-Hub-Script/main/Games%20Hub%20(Always%20updated)"))()
683
end)
684
685
HubSection:NewButton("BIDO SKINS V1.5", "HELLA SKRIPTS", function()
686
loadstring(game:HttpGet("https://raw.githubusercontent.com/BidoSkinsYT/BidoSkinsYT/main/Bido%20SkinsV1.5"))()
687
end)
688
689
HubSection:NewButton("GHOST Hub BEST", "HELLA SKRIPTS", function()
690
loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/GhostHub'))()
691
end)
692
693
HubSection:NewButton("REDGHOST Hub", "gameshub", function()
694
loadstring(game:HttpGet('https://pastebin.com/raw/WFKSRG6m'))();
695
end)
696
697
HubSection:NewButton("Darkrai X Animation Hub v0.3", "FREE ANIMS R15", function()
698
loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Animation-Hub/main/Animation%20Gui", true))()
699
end)
700
701
HubSection:NewButton("Simple v3", "simple v3 hub", function()
702
loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Simple-V3-8819", true))()
703
end)
704
705
HubSection:NewButton("Abuse GUI", "abuse", function()
706
loadstring(game:HttpGet("https://pastebin.com/raw/2XnDKHcH"))()
707
end)
708
709
HubSection:NewButton("Davi hub", "games hub", function()
710
loadstring(game:HttpGet(("https://raw.githubusercontent.com/Davicoderliner/davigui/main/Daviguiv2loader.lua"),true))()
711
end)
712
713
HubSection:NewButton("Mini hub", "games hub", function()
714
loadstring(game:HttpGet("https://raw.githubusercontent.com/MiniNoobie/MINI-HUB-V2/main/FINALLY%20UPDATED%20MINI%20HUB",true))()
715
end)
716
717
HubSection:NewButton("SPIDERMAN ABILITY GUI", "klimb walls (C to toggle)", function()
718
--SPIDER MAN GUI
719
loadstring(game:HttpGet(('https://pastebin.com/raw/2X0hKUgq'),true))()
720
end)
721
722
HubSection:NewButton("Ohio Hub", "small hub", function()
723
--Ohio GUI
724
loadstring(game:HttpGet("https://pastebin.com/raw/hkvHeHed",true))()
725
end)
726
727
HubSection:NewButton("Fling GUI", "πŸ‘ŠπŸ½πŸ‘ŠπŸ½πŸ‘ŠπŸ½πŸ‘ŠπŸ½πŸ‘ŠπŸ½", function()
728
loadstring(game:HttpGet(('https://raw.githubusercontent.com/0Ben1/fe/main/obf_K2n31uc6t2wY5A8786eR4K15sgbUF0vdQ80a0LzgvLRkSNYd89H1AS3124gMR6SM.lua.txt'),true))()
729
end)
730
731
HubSection:NewButton("Darkrai X", "hub", function()
732
loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/arsenal-hub/main/Arsenal%20GamingScripter", true))()
733
end)
734
735
HubSection:NewButton("B Genesis V1.2", "hub", function()
736
loadstring(game:HttpGet('https://raw.githubusercontent.com/raw-scriptpastebin/raw/main/B_Genesis'))()
737
end)
738
739
HubSection:NewButton("Moon ui", "moon gui", function()
740
loadstring(game:HttpGet('https://raw.githubusercontent.com/IlikeyocutgHAH12/MoonUI-v10-/main/MoonUI%20v10'))()
741
end)
742
743
HubSection:NewButton("RTX GUI", "map kolor/theme editor",
744
function()loadstring(game:HttpGet(('https://pastefy.app/xXkUxA0P/raw'),true))()
745
end)
746
747
HubSection:NewButton("RTX GUI 2", "map kolor/theme editor", function()
748
loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/Chillz-s-scripts/main/enhancer.txt"))()
749
end)
750
751
HubSection:NewButton("FE RemX OP trolling gui", "trolling gui", function()
752
loadstring(game:HttpGet("https://pastebin.com/raw/6TGpAUjr"))()
753
end)
754
755
756
757
758
-- game skripts
759
local Games = Window:NewTab("Games")
760
local GamesSection = Games:NewSection("Games")
761
762
GamesSection:NewButton("Find The Markers", "easy tp to random marker", function()loadstring(game:HttpGet('https://pastebin.com/raw/7gu2ztpP'))()
763
end)
764
765
GamesSection:NewButton("50/50 Pixk A Door", "reveals all doors in lime green", function()getgenv().Door = true
766
767
while wait() do
768
if getgenv().Door == true then
769
for i,v in pairs(game.Workspace.Doors:GetChildren()) do
770
for i,l in pairs(v:GetChildren()) do
771
if l:FindFirstChild("???") then
772
l.BrickColor = BrickColor.new("Lime green")
773
end
774
end
775
end
776
end
777
end
778
end)
779
780
GamesSection:NewButton("KAT GUI", "esp,spam shoot (aimbotπŸ’»)", function()--kat gui
781
loadstring(game:HttpGet("https://pastebin.com/raw/78kG7trR"))()
782
end)
783
784
GamesSection:NewButton("DaHood Reborn", "dahood aimloxk", function()loadstring(game:HttpGet("https://pastebin.com/raw/iNd3xTPv"))()
785
end)
786
787
GamesSection:NewButton("Pankake Empire Tower", "yumπŸ₯žπŸ₯žπŸ₯ž", function()
788
-- pankake tora
789
loadstring(game:HttpGet("https://raw.githubusercontent.com/ToraIsMe/ToraIsMe/main/0pancake", true))()
790
end)
791
792
GamesSection:NewButton("Pet Empire Tykoon", "πŸΆπŸ±πŸ•πŸ°πŸˆπŸΉπŸ‡", function()
793
-- petempire tora
794
loadstring(game:HttpGet("https://raw.githubusercontent.com/ToraIsMe2/ToraIsMe2/main/0pettycoon", true))()
795
end)
796
797
GamesSection:NewButton("Rainbow Friends 2", "best rainbow friends skript", function()loadstring(game:HttpGet('https://raw.githubusercontent.com/ToraIsMe/ToraIsMe/main/0rainbow'))()
798
end)
799
800
GamesSection:NewButton("Adopt Me - Fly Ride Pets", "fly ability for all pets", function()loadstring(game:HttpGet(('https://raw.githubusercontent.com/rblxscriptsnet/scripts/main/adoptmegui1'),true))()
801
end)
802
803
GamesSection:NewButton("Prison Life - Tiger Admin", "admin kommands, kmdlist",
804
function()loadstring(game:HttpGet('https://raw.githubusercontent.com/H17S32/Tiger_Admin/main/Script'))()
805
end)
806
807
GamesSection:NewButton("Prison Life - STEAL TOOLS", "works if player has tools (tools=items)",
808
function()for i,v in pairs (game.Players:GetChildren()) do
809
wait()
810
for i,b in pairs (v.Backpack:GetChildren()) do
811
b.Parent = game.Players.LocalPlayer.Backpack
812
end
813
end
814
end)
815
816
GamesSection:NewButton("Flee The Faxility", "ftf gui",
817
function()loadstring(game:HttpGet("https://raw.githubusercontent.com/LeviTheOtaku/roblox-scripts/main/FTFHAX.lua",true))()
818
end)
819
820
GamesSection:NewButton("MM2 GUI 2 (New)", "esp,see murderer&more",
821
function()loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Drifter0507/GUIS/main/MURDER%20MYSTERY%202", true))();
822
end)
823
824
GamesSection:NewButton("MM2 - Admin Panel", "esp blah blah more",
825
function()loadstring(game:HttpGet(('https://raw.githubusercontent.com/MarsQQ/ScriptHubScripts/master/MM2%20Admin%20Panel'),true))()
826
end)
827
828
GamesSection:NewButton("[FREE ADMIN] Fedatorum Admin Abuser", "only works in freeadmin games",
829
function()-- fedatorum admin abuser
830
loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/showcases/main/fedoratumadmin",true))()
831
end)
832
833
834
835
836
837
-- FE SKRIPTS
838
local Fe = Window:NewTab("FE")
839
local FeSection = Fe:NewSection("FE Skripts")
840
841
FeSection:NewButton("FE Stop Time", "freeze in mid air or whatever", function()
842
loadstring(game:HttpGet('https://raw.githubusercontent.com/creepstu/fuzzy-octo-giggle/main/Source'))()
843
end)
844
845
FeSection:NewButton("FE Fish", "(need hat) Parrot Fishfaxe", function()
846
-- fe fish
847
loadstring(game:HttpGet(('https://pastefy.app/yrp6En96/raw'),true))()
848
end)
849
850
FeSection:NewButton("FE Ragdoll Yourself", "reset or die to disable", function()loadstring(game:HttpGet("https://pastebin.com/raw/VY5d58xz"))()
851
end)
852
853
FeSection:NewButton("FE Korblox", "need korblox rekolor for 65 robux, R15", function()
854
loadstring(game:HttpGet("https://pastebin.com/raw/0NzfiZJn"))()
855
end)
856
857
FeSection:NewButton("FE Vehikle Fly", "flying kar gui", function()
858
loadstring(game:HttpGet("https://pastebin.com/raw/MHE1cbWF"))()
859
end)
860
861
FeSection:NewButton("FE Baxkflip/Frontflip", "baxk and frontflip", function()
862
-- fe bk & front
863
loadstring(game:HttpGet(('https://pastefy.app/yrp6En96/raw'),true))()
864
end)
865
866
FeSection:NewButton("FE Time Reverse", "reverses what u do", function()
867
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/Revenant", true))()
868
Library.DefaultColor = Color3.fromRGB(0,255,0)
869
870
Library:Notification({
871
Text = "provided by lulaslollipop",
872
Duration = 4
873
})
874
875
wait (2)
876
877
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/Revenant", true))()
878
Library.DefaultColor = Color3.fromRGB(0,255,0)
879
880
Library:Notification({
881
Text = "SKRIPT EXEKUTED 🍭🍭🍭🍭",
882
Duration = 4
883
})
884
885
loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/L"))()
886
end)
887
888
FeSection:NewButton("FE Portal Gun", "type user first and shoot gun to tp to them", function()
889
loadstring(game:HttpGet("https://pastebin.com/raw/H9B4aGij"))()
890
end)
891
892
FeSection:NewButton("FE fly any hat like a dragon", "use keybind stroke to move", function()
893
loadstring(game:HttpGet("https://raw.githubusercontent.com/BidoSkinsYT/BidoSkinsYT/main/Fe%20hat%20Dragon"))()
894
end)
895
896
FeSection:NewButton("FE WAR ENDER", "warendergod", function()
897
loadstring(game:HttpGet("https://textbin.net/raw/nos6oilby7"))()
898
end)
899
900
FeSection:NewButton("FE Krazy", "by dark", function()
901
loadstring(game:HttpGet("https://textbin.net/raw/rdssq0b2em"))()
902
end)
903
904
FeSection:NewButton("FE Kreepy Krawler", "turns u into kreepy krawler", function()
905
loadstring(game:HttpGet("https://pastebin.com/raw/rzcFPsLn"))()
906
end)
907
908
FeSection:NewButton("FE Avatar Kreator", "move your axxessories anywhere", function()
909
loadstring(game:HttpGet("https://pastebin.com/raw/TTQn3RDk"))()
910
end)
911
912
FeSection:NewButton("FE Kamera Slider", "yeah", function()
913
loadstring(game:HttpGet("https://raw.githubusercontent.com/rouxhaver/scripts-2/main/Camera%20Sliders.lua"))()
914
end)
915
916
FeSection:NewButton("FE Mimik GUI", "kopy users messages", function()
917
loadstring(game:HttpGet('https://raw.githubusercontent.com/0Ben1/fe./2520c121ab919b2b9697ab5c70797dcfdaa5db43/Ohio'))()
918
end)
919
920
FeSection:NewButton("FE Message Art", "turn text into art", function()
921
loadstring(game:HttpGet("https://textbin.net/raw/hmtw3zllmp",true))()
922
end)
923
924
FeSection:NewButton("FE Invisible & Teleport GUI", "any game *op*", function()-- FE Invisible GUI & Teleport R15/R6 | ANY GAME *OP*
925
loadstring(game:HttpGet('https://raw.githubusercontent.com/0Ben1/fe./dbb6ce6f6cee4f7a5c9e20d7b88e83db2a93bf25/Invisible%20GUI'))()
926
end)
927
928
929
930
931
-- ovas tabs
932
local Ovas = Window:NewTab("Others")
933
local OvasSection = Ovas:NewSection("Others")
934
935
OvasSection:NewButton("Universal Spy GUI", "player list gui", function()
936
loadstring(game:HttpGet("https://raw.githubusercontent.com/MichaelScripter/MiniScript/main/Spy gui.lua"))()
937
end)
938
939
OvasSection:NewButton("Walkfling gui", "fling a player by walking into them", function()
940
loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI"))()
941
end)
942
943
OvasSection:NewButton("Press a player fling", "fling a player by pressing them", function()
944
loadstring(game:HttpGet(('https://raw.githubusercontent.com/0Ben1/fe/main/obf_5wpM7bBcOPspmX7lQ3m75SrYNWqxZ858ai3tJdEAId6jSI05IOUB224FQ0VSAswH.lua.txt'),true))()
945
end)
946
947
OvasSection:NewButton("😈", "😈😈😈😈😈", function()
948
-- FE LAG CRASH SERVER | Makes the game lag for every player eventually making them crash or leave.
949
-- (Should work on any game with default roblox chat)
950
-- yeah
951
952
while wait() do
953
local Message = "😈"
954
local Unicode = "β€Š"
955
Message = Message .. Unicode:rep(200 - #Message)
956
957
local ReplicatedStorage = game:GetService("ReplicatedStorage")
958
local SayMessageRequest = ReplicatedStorage:FindFirstChild("SayMessageRequest", true)
959
960
if SayMessageRequest then
961
for i = 1, 7 do
962
SayMessageRequest:FireServer(Message, "All")
963
end
964
end
965
wait(math.random(12,14))
966
end
967
end)
968
969
970
971
-- Home.TabMy.Skrpts
972
local Home = Window:NewTab("Home")
973
local HomeSection = Home:NewSection("Note: more skripts will be added soon")
974
975
HomeSection:NewButton("πŸ”Ž Skript", "look up any skript", function()
976
loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/chillz-workshop/main/ScriptSearcher"))()
977
end)
978
979
HomeSection:NewButton("Ping Kounter", "see ping", function()
980
loadstring(game:HttpGet("https://pastebin.com/raw/MvKKJ331"))()
981
end)
982
983
Home:NewSection("Skripts")
984
985
HomeSection:NewButton("Anti AFK", "disables afk limit", function()
986
---- Roblox Anti Afk Script
987
988
wait(0.5)local ba=Instance.new("ScreenGui")
989
local ca=Instance.new("TextLabel")local da=Instance.new("Frame")
990
local _b=Instance.new("TextLabel")local ab=Instance.new("TextLabel")ba.Parent=game.CoreGui
991
ba.ZIndexBehavior=Enum.ZIndexBehavior.Sibling;ca.Parent=ba;ca.Active=true
992
ca.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)ca.Draggable=true
993
ca.Position=UDim2.new(0.698610067,0,0.098096624,0)ca.Size=UDim2.new(0,370,0,52)
994
ca.Font=Enum.Font.SourceSansSemibold;ca.Text="Anti AFK Skript"ca.TextColor3=Color3.new(0,1,1)
995
ca.TextSize=22;da.Parent=ca
996
da.BackgroundColor3=Color3.new(0.196078,0.196078,0.196078)da.Position=UDim2.new(0,0,1.0192306,0)
997
da.Size=UDim2.new(0,370,0,107)_b.Parent=da
998
_b.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)_b.Position=UDim2.new(0,0,0.800455689,0)
999
_b.Size=UDim2.new(0,370,0,21)_b.Font=Enum.Font.Arial;_b.Text="made by lulaslollipop"
1000
_b.TextColor3=Color3.new(0,1,1)_b.TextSize=20;ab.Parent=da
1001
ab.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)ab.Position=UDim2.new(0,0,0.158377,0)
1002
ab.Size=UDim2.new(0,370,0,44)ab.Font=Enum.Font.ArialBold;ab.Text="Status: Aktive"
1003
ab.TextColor3=Color3.new(0,1,1)ab.TextSize=20;local bb=game:service'VirtualUser'
1004
game:service'Players'.LocalPlayer.Idled:connect(function()
1005
bb:CaptureController()bb:ClickButton2(Vector2.new())
1006
ab.Text="Roblox tried to kixk u but i kixked him instead"wait(2)ab.Text="Status : Aktive"end)
1007
end)
1008
1009
HomeSection:NewButton("FraktureSS", "my baxkdoor.exe serverside", function()--FRAKTURE SS
1010
loadstring(game:HttpGet("https://raw.githubusercontent.com/L1ghtingBolt/FraktureSS/master/unobfuscated.lua"))()
1011
end)
1012
1013
HomeSection:NewButton("No Lib %FO", "nolib%", function()loadstring(game:HttpGet("https://pastebin.com/raw/2Vxg0a72"))()
1014
end)
1015
1016
HomeSection:NewButton("Filtering Enabled", "fe xhexker", function()print(workspace.FilteringEnabled)
1017
end)
1018
1019
HomeSection:NewButton("Rejoin", "rejoins the same lobby",
1020
function()--rejoin lobby
1021
local ts = game:GetService("TeleportService")
1022
1023
local p = game:GetService("Players").LocalPlayer
1024
1025
1026
1027
ts:TeleportToPlaceInstance(game.PlaceId, game.JobId, p)
1028
end)
1029
1030
HomeSection:NewButton("Exit Game", "leave the game",
1031
function()-- exit game skript
1032
loadstring(game:GetObjects("rbxassetid://2662507900")[1].Source)()
1033
end)
1034
1035
1036
1037
-- More.TabMy.Skrpts
1038
local More = Window:NewTab("More")
1039
local MoreSection = More:NewSection("more skripts koming soon...🍭")
1040
1041
--buttons.MoreSektion
1042
MoreSection:NewButton("Auto Grammar V2", "type with good punkuation",
1043
function()shared.CustomCorrections = {
1044
["examplething12"] = "hello" -- if you say "examplething12" it will become hello
1045
}
1046
loadstring(game:HttpGet("https://raw.githubusercontent.com/eosuwu/boblox/main/autogremer.lua"))()
1047
end)
1048
1049
MoreSection:NewButton("Auto Klixker", "mighty klixker",
1050
function()-- mighty klixker
1051
getgenv().key = "Hostile"
1052
loadstring(game:HttpGet("https://raw.githubusercontent.com/Hosvile/The-telligence/main/MC%20KSystem%202"))()
1053
end)
1054
1055
MoreSection:NewButton("Faster Run", "run faster",
1056
function()shared["ζœ¬εœ°ζ’­ζ”Ύε™¨"] = game:FindService'Players'['LocalPlayer']
1057
shared["ζ•°ε­¦"] = math
1058
shared["εΌ€ζ–Ή"] = shared["ζ•°ε­¦"]['sqrt']
1059
shared["ζœ¬εœ°ζ’­ζ”Ύε™¨"]['Character']:FindFirstChildOfClass'Humanoid'.WalkSpeed = shared["εΌ€ζ–Ή"](1000) -- Speed exploit
1060
end)
1061
1062
MoreSection:NewButton("Kneel", "kneel and walk",
1063
function()--Crouch Animation ID: 287325678
1064
1065
local Crouch = Instance.new("Animation")
1066
Crouch.AnimationId = "rbxassetid://287325678"
1067
local DoIt = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Crouch)
1068
DoIt:Play()
1069
end)
1070
1071
MoreSection:NewButton("Kneel V2", "C to toggle USE GENERATE ANY KEYBIND skript",
1072
function()KEY = "C" -- Key to crouch
1073
CROUCHWALKSPEED = 12 -- Walkspeed when you are crouching
1074
1075
local Player = game:GetService("Players").LocalPlayer;
1076
local UserInputService = game:GetService("UserInputService");
1077
1078
local Character = Player.Character;
1079
local Humanoid = Character:FindFirstChildOfClass("Humanoid");
1080
local oldWS = Humanoid.WalkSpeed
1081
1082
local CrouchAnimation = Instance.new("Animation");
1083
CrouchAnimation.AnimationId = "rbxassetid://287325678";
1084
local Crouch = Humanoid:LoadAnimation(CrouchAnimation);
1085
Crouch.Priority = Enum.AnimationPriority.Action
1086
1087
local Crouching = false
1088
UserInputService.InputBegan:Connect(function(input,gameprocessed)
1089
if gameprocessed then return end
1090
if input.KeyCode == Enum.KeyCode[KEY] then
1091
Crouching = true
1092
Crouch:Play(.1)
1093
Humanoid.WalkSpeed = CROUCHWALKSPEED
1094
end
1095
end)
1096
1097
UserInputService.InputEnded:Connect(function(input,gameprocessed)
1098
if gameprocessed then return end
1099
if input.KeyCode == Enum.KeyCode[KEY] then
1100
Crouching = false
1101
Crouch:Stop(.1)
1102
Humanoid.WalkSpeed = oldWS
1103
end
1104
end)
1105
1106
Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
1107
if Crouching then
1108
Humanoid.WalkSpeed = CROUCHWALKSPEED
1109
end
1110
end)
1111
end)
1112
1113
1114
1115
--toggle the ui yes
1116
local MoreSection = More:NewSection("no")
1117
1118
MoreSection:NewKeybind("Toggle ui", "toggle the ui yes", Enum.KeyCode.F6, function()
1119
Library:ToggleUI()
1120
end)
1121
1122
1123
local ScreenGui = Instance.new("ScreenGui")
1124
local Frame = Instance.new("Frame")
1125
local TextButton = Instance.new("TextButton")
1126
local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
1127
1128
--Properties:
1129
1130
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
1131
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
1132
1133
Frame.Parent = ScreenGui
1134
Frame.BackgroundColor3 = Color3.fromRGB(128,0,32)
1135
Frame.BackgroundTransparency = 0.500
1136
Frame.Position = UDim2.new(0.858712733, 0, 0.1050062257, 0)
1137
Frame.Size = UDim2.new(0, 90, 0, 30)
1138
1139
TextButton.Parent = Frame
1140
TextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
1141
TextButton.BackgroundTransparency = 1.000
1142
TextButton.Size = UDim2.new(1, 0, 1, 0)
1143
TextButton.Font = Enum.Font.GothamBold
1144
TextButton.Text = "toggle"
1145
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
1146
TextButton.TextScaled = true
1147
TextButton.TextSize = 22.000
1148
TextButton.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
1149
TextButton.TextStrokeTransparency = 0.000
1150
TextButton.TextWrapped = true
1151
TextButton.MouseButton1Down:Connect(function()
1152
game:GetService("VirtualInputManager"):SendKeyEvent(true, "F6" , false , game)
1153
end)
1154
1155
UITextSizeConstraint.Parent = TextButton
1156
UITextSizeConstraint.MaxTextSize = 30