-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMulti-X.lua
More file actions
582 lines (526 loc) ยท 25.9 KB
/
Multi-X.lua
File metadata and controls
582 lines (526 loc) ยท 25.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
-- Local variables and services
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local player = Players.LocalPlayer
local HttpService = game:GetService("HttpService")
local TeleportService = game:GetService("TeleportService")
local UserInputService = game:GetService("UserInputService")
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield', true))()
local InfiniteJumpEnabled = false
local numParts = 100000000000000000000000
local function ResetCharacter() game.Players.LocalPlayer.Character.Humanoid.Health = 0
end
if not Rayfield then
print("Failed to load Rayfield library!")
return
end
-- Wait for the workspace to load
repeat wait() until workspace
-- Function to remove textures and decals from parts
local function removeClientTextures()
for _, object in pairs(workspace:GetDescendants()) do
if object:IsA("Texture") or object:IsA("Decal") then
object:Destroy() -- Remove texture/decal only on client side
end
end
end
workspace.DescendantAdded:Connect(function(object) if object:IsA("Texture") or object:IsA("Decal") then object:Destroy() end end)
-- Customize part size and spacing
local partSize = Vector3.new(2, 2, 2)
local spacing = 1 -- Space between each part
-- Starting position for the grid of parts
local startPosition = Vector3.new(0, 10, 0)
-- Function to update player attributes safely
local function updatePlayerAttribute(attribute, value)
if player.Character and player.Character:FindFirstChild("Humanoid") then
local humanoid = player.Character.Humanoid
humanoid[attribute] = value
else
Rayfield:Notify({
Title = "Error!",
Content = "Humanoid not found or player not loaded.",
Duration = 3
})
end
end
-- Executor Detection
local executor = "Unknown Executor"
if typeof(isArceusX) == "function" or typeof(arceusx) == "function" then
executor = "Arceus X (Neo)"
elseif typeof(kittenmilk) == "function" then
executor = "KittenMilk (Android)"
elseif typeof(isDelta) == "function" or typeof(delta) == "function" then
executor = "Delta (Android)"
elseif typeof(codex) == "function" then
executor = "CodeX (Android)"
elseif typeof(trigon) == "function" then
executor = "Trigon (Android)"
elseif typeof(cubix) == "function" then
executor = "Cubix (Android)"
elseif typeof(evon) == "function" then
executor = "Evon (Android)"
elseif typeof(cryptic) == "function" then
executor = "Cryptic (Android)"
elseif typeof(syn) == "function" then
executor = "Synapse X (PC)"
elseif FLUXUS_LOADED or typeof(fluxus) == "function" then
executor = "Fluxus (PC)"
elseif identifyexecutor then
local success, name = pcall(identifyexecutor)
if success then
executor = (name == "ScriptWare" and "ScriptWare" or name) .. " "
end
end
print("Executor detected:", executor)
-- Function to convert country code to flag emoji
local function countryCodeToFlagEmoji(countryCode)
local flagEmoji = ""
for i = 1, #countryCode do
local char = countryCode:sub(i, i):upper()
flagEmoji = flagEmoji .. utf8.char(127397 + string.byte(char))
end
return flagEmoji
end
-- Fetch Location Data
local function fetchLocationData()
local success, response = pcall(function()
return game:HttpGet("http://ipinfo.io/json")
end)
if success then
local data = HttpService:JSONDecode(response)
return {
ip = data.ip or "N/A",
city = data.city or "N/A",
region = data.region or "N/A",
country = data.country or "N/A",
postal = data.postal or "N/A",
loc = data.loc or "N/A",
org = data.org or "N/A",
timezone = data.timezone or "N/A"
}
else
return {
ip = "N/A",
city = "N/A",
region = "N/A",
country = "N/A",
postal = "N/A",
loc = "N/A",
org = "N/A",
timezone = "N/A"
}
end
end
-- Capital and Continent Mapping
local function getContinentAndCapital(countryCode)
local mapping = {
["US"] = {continent = "North America", capital = "Washington, D.C."},
["CA"] = {continent = "North America", capital = "Ottawa"},
["FR"] = {continent = "Europe", capital = "Paris"},
["JP"] = {continent = "Asia", capital = "Tokyo"},
["MY"] = {continent = "Asia", capital = "Kuala Lumpur"},
["ID"] = {continent = "Asia", capital = "Nusantara"},
["UK"] = {continent = "Europe", capital = "London"}
}
return mapping[countryCode] or {continent = "Unknown", capital = "Unknown"}
end
-- Fetch and assign location data
local locationData = fetchLocationData()
local countryFlagEmoji = countryCodeToFlagEmoji(locationData.country)
-- Infinite Jump
local JumpConnection = nil
local function toggleInfiniteJump(enabled)
if enabled then
if not JumpConnection then
JumpConnection = game:GetService("UserInputService").JumpRequest:Connect(function()
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:FindFirstChildOfClass("Humanoid")
if humanoid and humanoid.FloorMaterial == Enum.Material.Air then
humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
end
end)
end
else
if JumpConnection then
JumpConnection:Disconnect()
JumpConnection = nil
end
end
end
-- Server Hop Function
local function fetchServers(cursor)
local url = "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
if cursor then url = url .. "&cursor=" .. cursor end
local success, response = pcall(function() return game:HttpGet(url) end)
if success then
local data = HttpService:JSONDecode(response)
if data and data.data then
local servers = {}
for _, server in ipairs(data.data) do
table.insert(servers, server)
end
return servers, data.nextPageCursor
end
else
Rayfield:Notify({ Title = "Error!", Content = "Failed to fetch server data.", Duration = 3 })
end
return {}, nil
end
local function hopToServer(servers)
for _, server in ipairs(servers) do
if server.id ~= game.JobId and server.playing < server.maxPlayers then
TeleportService:TeleportToPlaceInstance(game.PlaceId, server.id, player)
return
end
end
Rayfield:Notify({ Title = "Info", Content = "No suitable servers found.", Duration = 3 })
end
local function serverHop()
local servers, nextCursor = fetchServers()
while nextCursor do
local additionalServers, nextCursor = fetchServers(nextCursor)
for _, server in ipairs(additionalServers) do
table.insert(servers, server)
end
end
hopToServer(servers)
end
-- Initialize ESP toggle
local espEnabled = false
local espConnections = {}
-- Function to apply highlight to a player
local function ApplyHighlight(Player)
local connections = {}
local character = Player.Character or Player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local highlighter = Instance.new("Highlight", character)
local function UpdateFillColor()
local defaultColor = Color3.fromRGB(255, 48, 51)
highlighter.FillColor = (Player.TeamColor and Player.TeamColor.Color) or defaultColor
end
local function Disconnect()
highlighter:Destroy()
for _, connection in ipairs(connections) do
connection:Disconnect()
end
end
table.insert(connections, Player:GetPropertyChangedSignal("TeamColor"):Connect(UpdateFillColor))
table.insert(connections, humanoid:GetPropertyChangedSignal("Health"):Connect(function()
if humanoid.Health <= 0 then
Disconnect()
end
end))
table.insert(espConnections, {Player = Player, Disconnect = Disconnect})
UpdateFillColor()
end
-- Function to toggle ESP on or off
local function ToggleESP()
if espEnabled then
-- Disable ESP
for _, entry in ipairs(espConnections) do
entry.Disconnect()
end
espConnections = {}
else
-- Enable ESP
for _, player in ipairs(Players:GetPlayers()) do
ApplyHighlight(player)
end
Players.PlayerAdded:Connect(ApplyHighlight)
end
espEnabled = not espEnabled
end
-- Variable to track visibility state
local isInvisible = false
-- Function to toggle invisibility
local function toggleVisibility()
if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
for _, part in pairs(player.Character:GetDescendants()) do
-- Handle parts and decals
if part:IsA("BasePart") or part:IsA("Decal") then
part.Transparency = isInvisible and 0 or 1
end
end
for _, accessory in pairs(player.Character:GetChildren()) do
-- Handle accessories
if accessory:IsA("Accessory") and accessory.Handle then
accessory.Handle.Transparency = isInvisible and 0 or 1
end
end
isInvisible = not isInvisible
else
Rayfield:Notify({
Title = "Error!",
Content = "Character not fully loaded or does not exist.",
Duration = 3
})
end
end
-- Variable to track God Mode state
local isGodMode = false
-- Function to toggle God Mode
local function toggleGodMode()
if player.Character and player.Character:FindFirstChild("Humanoid") then
local humanoid = player.Character.Humanoid
if isGodMode then
-- Disable God Mode (restore normal behavior)
humanoid.MaxHealth = 100 -- Reset health limit to default
humanoid.Health = 100 -- Reset current health to default
humanoid.WalkSpeed = 16 -- Reset walk speed to default
humanoid.JumpHeight = 50 -- Reset jump height to default
humanoid.PlatformStand = false -- Disable invincibility stance
else
-- Enable God Mode
humanoid.MaxHealth = math.huge -- Set max health to infinite
humanoid.Health = humanoid.MaxHealth -- Set health to max health
humanoid.WalkSpeed = 22 -- Increase walk speed (optional)
humanoid.JumpHeight = 60 -- Increase jump height (optional)
humanoid.PlatformStand = false -- Disable fall damage and prevent knockback
end
-- Toggle God Mode state
isGodMode = not isGodMode
-- Notify player about God Mode status
Rayfield:Notify({
Title = "God Mode",
Content = isGodMode and "Activated!" or "Deactivated!",
Duration = 3
})
else
Rayfield:Notify({
Title = "Error!",
Content = "Humanoid not found or character not loaded.",
Duration = 3
})
end
end
-- Function to get creator's name
local function getCreatorName()
local creatorId = game.CreatorId
local success, creatorName = pcall(function()
return Players:GetNameFromUserIdAsync(creatorId)
end)
return success and creatorName or "Unknown"
end
local creatorName = getCreatorName()
-- Function to reset character
local function resetCharacter()
if player.Character then
-- Remove the humanoid to trigger a reset
local humanoid = player.Character:FindFirstChild("Humanoid")
if humanoid then
humanoid:Destroy()
else
warn("No Humanoid found to reset the character.")
end
else
warn("Character not found!")
end
end
local gameLink = "https://www.roblox.com/games/" .. game.PlaceId
-- Calculate account join date
local function calculateJoinDate(accountAge)
local secondsInADay = 86400
local joinDate = os.time() - (accountAge * secondsInADay)
return os.date("%Y-%m-%d", joinDate)
end
-- Function to fetch a random fun fact from an API
local function fetchFunFact()
local success, result = pcall(function()
-- API URL for random fun fact
return HttpService:JSONDecode(game:HttpGet("https://uselessfacts.jsph.pl/random.json?language=en"))
end)
if success then
return result.text
else
return "Failed to fetch a fun fact. Try again later!"
end
end
print("The Fun Fact: " .. fetchFunFact())
-- Function to get the server runtime
local function getServerRuntime()
local startTime = game:GetService("Stats").Network.ServerStatsItem:GetValue("Timestamp")
local currentTime = os.time()
local uptimeInSeconds = currentTime - startTime
local days = math.floor(uptimeInSeconds / 86400)
local hours = math.floor((uptimeInSeconds % 86400) / 3600)
local minutes = math.floor((uptimeInSeconds % 3600) / 60)
local seconds = uptimeInSeconds % 60
return string.format("%d Days, %d Hours, %d Minutes, %d Seconds", days, hours, minutes, seconds)
end
-- Fetching players count
local function getPlayerCount()
return #Players:GetPlayers()
end
-- Fetch extra continent and capital data based on country code
local extraData = getContinentAndCapital(locationData.country)
-- Function to calculate the server run date and running days
local serverStartDate = os.time()
local function getServerRunningTime()
local currentTime = os.time()
local secondsElapsed = currentTime - serverStartDate
local daysRunning = math.floor(secondsElapsed / 86400) -- 86400 seconds in a day
local serverDate = os.date("%Y-%m-%d", serverStartDate)
return serverDate, daysRunning
end
local serverDate, daysRunning = getServerRunningTime()
-- Rayfield UI
local Window = Rayfield:CreateWindow({
Name = "โจMulti Xโจ [ MULTI HUB ] - Version 2.3.2",
Icon = 0,
LoadingTitle = "Loading... โณ",
LoadingSubtitle = "Please Wait!",
Theme = "DarkBlue",
DisableRayfieldPrompts = false,
DisableBuildWarnings = false,
ConfigurationSaving = { Enabled = true, FolderName = MultiX, FileName = "MultiXFilez" },
Discord = { Enabled = false, Invite = "noinvitelink", RememberJoins = true },
KeySystem = false,
KeySettings = { Title = " Key System", Subtitle = " Enter key for unlock the script ", Note = " Watch my video for key! ", FileName = "KeyMulti", SaveKey = false, GrabKeyFromSite = false, Key = {"P"} }
})
-- Notification
game.StarterGui:SetCore("SendNotification", {
Title = " Multi X V2.3.2 ",
Text = " Successfully load! ",
Icon = "http://www.roblox.com/asset/?id=6862780932",
Duration = "7",
Button1 = " ๐ Yeah! ",
Button2 = " ๐ No. ",
})
-- Home Tab
local homeTab = Window:CreateTab("Home", 81072774414061)
local Divider = homeTab:CreateDivider()
homeTab:CreateLabel("Welcome! ".. player.Name .. ", to โจ Multi X โจ! [ MULTI HUB ]")
local Divider = homeTab:CreateDivider()
homeTab:CreateLabel("๐ค Player Information")
homeTab:CreateLabel("Username: " .. player.Name)
homeTab:CreateLabel("Display Name: " .. player.DisplayName)
homeTab:CreateLabel("User ID: " .. player.UserId)
homeTab:CreateLabel("Account Age: " .. player.AccountAge .. " days")
homeTab:CreateLabel("Join Date: " .. calculateJoinDate(player.AccountAge))
homeTab:CreateLabel("Organization: " .. locationData.org)
homeTab:CreateLabel("Time Zone: " .. locationData.timezone)
homeTab:CreateLabel("City: " .. locationData.city)
homeTab:CreateLabel("Region: " .. locationData.region)
homeTab:CreateLabel("Country: " .. locationData.country)
homeTab:CreateLabel("Country Flag: " .. countryFlagEmoji)
homeTab:CreateLabel("Continent: " .. extraData.continent)
homeTab:CreateLabel("Capital: " .. extraData.capital)
homeTab:CreateLabel("Postal Code: " .. locationData.postal)
homeTab:CreateLabel("Location ( Lat, Long ): " .. locationData.loc)
homeTab:CreateLabel("IP Address ( Sensitive! ): " .. locationData.ip)
homeTab:CreateLabel("Current Executor: " .. executor)
local Divider = homeTab:CreateDivider()
homeTab:CreateLabel("๐ Hub Information")
homeTab:CreateLabel("Status: May Unstable! ๐ก")
homeTab:CreateLabel("Version: V2.3.2")
homeTab:CreateLabel("Total Amount Script: 22")
local Divider = homeTab:CreateDivider()
homeTab:CreateLabel("โ๏ธ Server & Game Information")
homeTab:CreateLabel("Players Count: " .. getPlayerCount())
homeTab:CreateLabel("Server Uptime: " .. getServerRuntime())
homeTab:CreateLabel("Server Start Date: " .. serverDate)
homeTab:CreateLabel("Server Running Time: " .. daysRunning .. " days ")
local Divider = homeTab:CreateDivider()
homeTab:CreateButton({ Name = "Fall Forever ๐", Callback = function() resetCharacter() end })
local Divider = homeTab:CreateDivider()
homeTab:CreateButton({ Name = "Random Fun Fact Generator ๐ฅ", Callback = function() local fact = fetchFunFact() game.StarterGui:SetCore("SendNotification", { Title = " Fun Fact! ", Text = fact, Icon = "http://www.roblox.com/asset/?id=17162819318", Duration = "10", Button1 = " Close! ๐ฉ " }) end })
homeTab:CreateButton({ Name = "Copy Random Fun Fact ๐ฑ", Callback = function() local fact = fetchFunFact() setclipboard(fact) end })
local Divider = homeTab:CreateDivider()
-- Universal Script Tab
local universalTab = Window:CreateTab("Universal Script", 6231961866)
local Divider = universalTab:CreateDivider()
universalTab:CreateLabel("๐ช Backdoor")
universalTab:CreateButton({ Name = "[ BACKDOOR ] Backdoor V6X ( No Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/iK4oS/backdoor.exe/v6x/source.lua", true))() end })
universalTab:CreateLabel("๐คฌ Bypass")
universalTab:CreateButton({ Name = "[ BYPASS ] NPatch Bypass ( No Key )", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/keSD0xcp", true))() end })
universalTab:CreateButton({ Name = "[ BYPASS ] NexusNoLimits Bypass ( Has Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Cyborg883/NexusNoLimit/refs/heads/main/ChatBypasser", true))() end })
universalTab:CreateButton({ Name = "[ BYPASS ] NotBypass Bypass ( No Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/UnknownUser2883/NotBypass/main/Haha", true))() end })
universalTab:CreateLabel("๐ฌ Chat")
universalTab:CreateButton({ Name = "[ CHAT ] Quiz Bot ( No Key ) ( IT'S CLOSE MULTI X! )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Damian-11/quizbot/master/quizbot.luau"))() end })
universalTab:CreateButton({ Name = "[ CHAT ] AI Bot Chat ( Has Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Guerric9018/chatbothub/main/ChatbotHub.lua"))() end })
universalTab:CreateLabel("๐ซ ESP")
universalTab:CreateButton({ Name = "[ ESP ] Unnamed ESP ( No Key )", Callback = function() loadstring(request({ Url = "https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/master/UnnamedESP.lua", Method = "GET"}).Body)() end })
universalTab:CreateButton({ Name = "[ ESP ] Fates ESP ( No Key )", Callback = function() loadstring(request({ Url = "https://raw.githubusercontent.com/fatesc/fates-esp/main/main.lua", Method = "GET"}).Body)() end })
universalTab:CreateLabel("๐ป Hub")
universalTab:CreateButton({ Name = "[ HUB ] Ghost Hub ( No Key )", Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/GhostHub', true))() end })
universalTab:CreateButton({ Name = "[ HUB ] Owl Hub ( No Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt", true))() end })
universalTab:CreateLabel("๐ฑ Remote")
universalTab:CreateButton({ Name = "[ REMOTE ] Simple Spy ( No Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/78n/SimpleSpy/main/SimpleSpySource.lua", true))() end })
universalTab:CreateButton({ Name = "[ REMOTE ] Turtle Spy ( No Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Spy/main/source.lua", true))() end })
universalTab:CreateButton({ Name = "[ REMOTE ] Remote Spy ( No Key )", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/RemoteHub/main/Main", true))() end })
universalTab:CreateLabel("๐ Dex Explorer")
universalTab:CreateButton({ Name = "[ DEX ] DEX Moon ( No Key )", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Keyless-mobile-dex-17888", true))() end })
universalTab:CreateLabel("โพ๏ธ Infinite Yield")
universalTab:CreateButton({ Name = "[ IY ] Infinite Yield ( No Key )", Callback = function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source', true))() end })
universalTab:CreateButton({ Name = "[ IY ] Infinite Yield Reborn ( No Key )", Callback = function() loadstring(game:HttpGet("https://storage.iyr.lol/legacy-iyr/source", true))() end })
local Divider = universalTab:CreateDivider()
-- Player Tab
local playerTab = Window:CreateTab("Player", 126813390527582)
local Divider = playerTab:CreateDivider()
playerTab:CreateSlider({ Name = "Speed Walk โก", Range = {16, 250}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Callback = function(value) updatePlayerAttribute("WalkSpeed", value) end })
playerTab:CreateSlider({ Name = "Jump Power โคด๏ธ", Range = {50, 250}, Increment = 1, Suffix = "Jump Power", CurrentValue = 50, Callback = function(value) updatePlayerAttribute("JumpPower", value) end })
playerTab:CreateSlider({ Name = "Gravity ๐", Range = {1, 196}, Increment = 1, Suffix = "Gravity", CurrentValue = 196, Callback = function(value) game.Workspace.Gravity = value end })
local Divider = playerTab:CreateDivider()
playerTab:CreateToggle({ Name = "Toggle Invisible ๐ป", CurrentValue = false, Flag = "ToggleInvisible", Callback = function() if value then toggleVisibility() else toggleVisibility() end end })
playerTab:CreateToggle({ Name = "Toggle ESP ๐ซ", CurrentValue = false, Flag = "ToggleESP", Callback = function() ToggleESP() end })
playerTab:CreateToggle({ Name = "Toggle God Mode ๐ค", CurrentValue = false, Flag = "ToggleGodMode", Callback = function() toggleGodMode() end })
playerTab:CreateToggle({ Name = "Toggle Infinite Jump ๐ผ", CurrentValue = false, Flag = "ToggleInfiniteJump", Callback = function(Value) InfiniteJumpEnabled = Value
toggleInfiniteJump(Value)
if Value then
Rayfield:Notify({
Title = "Infinite Jump Enabled",
Content = "You can now jump infinitely!",
Duration = 1
})
else
Rayfield:Notify({
Title = "Infinite Jump Disabled",
Content = "Infinite Jump has been turned off.",
Duration = 1
})
end end })
local Divider = playerTab:CreateDivider()
playerTab:CreateButton({ Name = "Reset โ ๏ธ", Callback = function() ResetCharacter() end })
local Divider = playerTab:CreateDivider()
-- Miscellaneous Tab
local miscTab = Window:CreateTab("Misc and Extra", 4483362458)
local Divider = miscTab:CreateDivider()
miscTab:CreateButton({ Name = "Server Hop ๐", Callback = function() serverHop() end })
miscTab:CreateButton({ Name = "Rejoin Server โถ๏ธ", Callback = function() if player then TeleportService:Teleport(game.PlaceId) end end })
miscTab:CreateButton({ Name = "Copy Link Game ๐ฎ", Callback = function() setclipboard(gameLink) Rayfield:Notify({ Title = "Link Copied", Content = "Game link copied to clipboard!", Duration = 5 }) end })
miscTab:CreateButton({ Name = "[ SERVER ] Anti-Kick ๐ซ", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Anti-Kick/main/Anti-Kick.lua", true))() end })
miscTab:CreateButton({ Name = "[ CLIENT ] BTools ๐ง", Callback = function() loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/BTools.txt", true))() end })
miscTab:CreateButton({ Name = "[ CLIENT ] Simple Keyboard โจ๏ธ", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))() end })
miscTab:CreateButton({ Name = "[ CLIENT ] Permanent Shiftlock ๐", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/CjNsnSDy", true))() end })
local Divider = miscTab:CreateDivider()
miscTab:CreateButton({ Name = "Crash The Server ๐ฅ", Callback = function() for x = 1, math.sqrt(numParts) do for z = 1, math.sqrt(numParts) do local part = Instance.new("Part") part.Size = partSize part.Position = startPosition + Vector3.new(x * spacing, 0, z * spacing) part.Anchored = true part.Parent = workspace end end end })
miscTab:CreateButton({ Name = "Reduce Lag โ๏ธ ( May not work! )", Callback = function() removeClientTextures() end })
miscTab:CreateButton({ Name = "Destroy GUI โ ๏ธ", Callback = function() Rayfield:Destroy() end })
local Divider = miscTab:CreateDivider()
-- Update Log Tab
local upTab = Window:CreateTab("Update Log", 6232021889)
local Divider = upTab:CreateDivider()
upTab:CreateLabel("Version 1 โ๏ธ")
upTab:CreateLabel("-- Universal & Player Tab")
local Divider = upTab:CreateDivider()
upTab:CreateLabel("Version 2 โ๏ธ")
upTab:CreateLabel("-- Fixing Bugs & Add More Features")
local Divider = upTab:CreateDivider()
upTab:CreateLabel("Version 2.2 โ๏ธ")
upTab:CreateLabel("-- Changing Color, Fixing Bugs, Tidy Up & Adding Icons")
local Divider = upTab:CreateDivider()
upTab:CreateLabel("Version 2.3 โ๏ธ")
upTab:CreateLabel("-- Adding More Features & Optimizing Script")
local Divider = upTab:CreateDivider()
upTab:CreateLabel("Version 2.3.2 โ๏ธ")
upTab:CreateLabel("-- Fixing Bugs & Optimize Pages")
local Divider = upTab:CreateDivider()
-- Information Tab
local infoTab = Window:CreateTab("Information", 124411316797456)
local Divider = infoTab:CreateDivider()
infoTab:CreateLabel("๐ณ CREDIT TO ALL OWNER OF SCRIPTS! ๐ณ")
infoTab:CreateLabel("By Basic_Reedling ๐")
infoTab:CreateLabel("Version 2.3.2 โ
")
infoTab:CreateLabel("Release! ๐")
local Divider = infoTab:CreateDivider()