-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnimeAdventuresRBScripts.lua
More file actions
142 lines (134 loc) · 5.41 KB
/
AnimeAdventuresRBScripts.lua
File metadata and controls
142 lines (134 loc) · 5.41 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
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "RBScripts.net I Anime Adventures",
LoadingTitle = "Brought to you by RBScripts.net",
LoadingSubtitle = "Thank for choosing us!",
ConfigurationSaving = {
Enabled = true,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "RBScriptsNet"
},
Discord = {
Enabled = true,
Invite = "https://discord.gg/xC3vVWECnT", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
RememberJoins = true -- Set this to false to make them join the discord every time they load it up
},
KeySystem = false, -- Set this to true to use our key system
KeySettings = {
Title = "Untitled",
Subtitle = "Key System",
Note = "No method of obtaining the key is provided",
FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
}
})
local Tab = Window:CreateTab("- Tab 1 -", 4483362458) -- Title, Image
local Tab2 = Window:CreateTab("- Utility -", 4483362458) -- Title, Image
local Section = Tab:CreateSection("Thank for using!")
local Button = Tab:CreateButton({
Name = "BEST Arpon Hub V.2 (BETA)",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/ArponAG/Scripts/main/AnimeAdventures_v2__Beta.lua"))()
end,
})
local Button = Tab:CreateButton({
Name = "Trap Hub",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/TrapstarKSSKSKSKKS/Main/main/Anime%20Adventures.lua"))()
end,
})
local Button = Tab2:CreateButton({
Name = "Infinite Yield",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
end,
})
local Button = Tab2:CreateButton({
Name = "Simple Spy",
Callback = function()
loadstring(game:HttpGet("https://github.com/exxtremestuffs/SimpleSpySource/raw/master/SimpleSpy.lua"))()
end,
})
local Button = Tab2:CreateButton({
Name = "Dex V.3",
Callback = function()
local rng = Random.new()
local charset = {}
for i = 48, 57 do table.insert(charset, string.char(i)) end
for i = 65, 90 do table.insert(charset, string.char(i)) end
for i = 97, 122 do table.insert(charset, string.char(i)) end
local function RandomCharacters(length)
if length > 0 then
return RandomCharacters(length - 1) .. charset[rng:NextInteger(1, #charset)]
else
return ""
end
end
local Dex = game:GetObjects("rbxassetid://9553291002")[1]
Dex.Name = RandomCharacters(rng:NextInteger(5, 20))
Dex.Parent = game:GetService("CoreGui")
local function Load(Obj, Url)
local function GiveOwnGlobals(Func, Script)
local Fenv = {}
local RealFenv = {script = Script}
local FenvMt = {}
FenvMt.__index = function(a,b)
if RealFenv[b] == nil then
return getfenv()[b]
else
return RealFenv[b]
end
end
FenvMt.__newindex = function(a, b, c)
if RealFenv[b] == nil then
getfenv()[b] = c
else
RealFenv[b] = c
end
end
setmetatable(Fenv, FenvMt)
setfenv(Func, Fenv)
return Func
end
local function LoadScripts(Script)
if Script.ClassName == "Script" or Script.ClassName == "LocalScript" then
spawn(function()
GiveOwnGlobals(loadstring(Script.Source, "=" .. Script:GetFullName()), Script)()
end)
end
for i,v in pairs(Script:GetChildren()) do
LoadScripts(v)
end
end
LoadScripts(Obj)
end
Load(Dex)
end,
})
local Button = Tab2:CreateButton({
Name = "Unnamed ESP",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/master/UnnamedESP.lua',true))()
end,
})
local Button = Tab2:CreateButton({
Name = "FPS Boost",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/raw-scriptpastebin/FE/main/FPS_BOOST")();
end,
})
local Button = Tab2:CreateButton({
Name = "Server Hop",
Callback = function()
local module = loadstring(game:HttpGet"https://raw.githubusercontent.com/raw-scriptpastebin/FE/main/Server_Hop_Settings")()
module:Teleport(game.PlaceId) ;
end,
})
local Button = Tab2:CreateButton({
Name = "Reoin",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/raw-scriptpastebin/FE/main/Rejoin_Server")();
end,
})