-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSaza.lua
294 lines (273 loc) · 11.1 KB
/
Saza.lua
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
---Credit src: Dino Hub
local SazaLoader = Instance.new("ScreenGui")
local SazaMain = Instance.new("Frame")
local SazaText = Instance.new("TextLabel")
local LoaderText = Instance.new("TextLabel")
local Outline = Instance.new("Frame")
local MobileToggle = Instance.new("Frame")
local MobileTitle = Instance.new("TextLabel")
local MobileToggleButton = Instance.new("TextButton")
local PCToggle = Instance.new("Frame")
local PCTitle = Instance.new("TextLabel")
local PCToggleButton = Instance.new("TextButton")
local SazaSystem = Instance.new("TextLabel")
local Outline1 = Instance.new("Frame")
local LoadText = Instance.new("TextButton")
local UICorner = Instance.new("UICorner")
local TextLabel = Instance.new("TextLabel")
SazaLoader.Name = "SazaLoader"
SazaLoader.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
SazaLoader.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
SazaMain.Name = "SazaMain"
SazaMain.Parent = SazaLoader
SazaMain.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
SazaMain.BorderColor3 = Color3.fromRGB(0, 255, 255)
SazaMain.BorderSizePixel = 2
SazaMain.Position = UDim2.new(0.345615327, 0, 0.329824567, 0)
SazaMain.Size = UDim2.new(0, 395, 0, 224)
SazaText.Name = "SazaText"
SazaText.Parent = SazaMain
SazaText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SazaText.BackgroundTransparency = 1.000
SazaText.Position = UDim2.new(0.182278469, 0, -0.0625, 0)
SazaText.Size = UDim2.new(0, 200, 0, 50)
SazaText.Font = Enum.Font.GothamSemibold
SazaText.Text = "Saza"
SazaText.TextColor3 = Color3.fromRGB(180, 180, 180)
SazaText.TextSize = 14.000
LoaderText.Name = "LoaderText"
LoaderText.Parent = SazaMain
LoaderText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
LoaderText.BackgroundTransparency = 1.000
LoaderText.BorderSizePixel = 0
LoaderText.Position = UDim2.new(0.296202511, 0, -0.0625, 0)
LoaderText.Size = UDim2.new(0, 200, 0, 50)
LoaderText.Font = Enum.Font.GothamBold
LoaderText.Text = "Loader"
LoaderText.TextColor3 = Color3.fromRGB(0, 255, 255)
LoaderText.TextSize = 14.000
local LocalizationService = game:GetService("LocalizationService")
local player = game.Players.LocalPlayer
local result, code = pcall(function()
return LocalizationService:GetCountryRegionForPlayerAsync(player)
end)
Outline.Name = "Outline"
Outline.Parent = SazaMain
Outline.BackgroundColor3 = Color3.fromRGB(0, 172, 172)
Outline.Position = UDim2.new(0.0227848105, 0, 0.120535716, 0)
Outline.Size = UDim2.new(0, 374, 0, 3)
MobileToggle.Name = "MobileToggle"
MobileToggle.Parent = SazaMain
MobileToggle.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
MobileToggle.BorderColor3 = Color3.fromRGB(0, 165, 165)
MobileToggle.Position = UDim2.new(0.0405063257, 0, 0.334821433, 0)
MobileToggle.Size = UDim2.new(0, 23, 0, 22)
MobileTitle.Name = "MobileTitle"
MobileTitle.Parent = MobileToggle
MobileTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
MobileTitle.BackgroundTransparency = 1.000
MobileTitle.Position = UDim2.new(-1.2608695, 0, -0.636363626, 0)
MobileTitle.Size = UDim2.new(0, 200, 0, 50)
MobileTitle.Font = Enum.Font.GothamSemibold
MobileTitle.Text = "Mobile"
MobileTitle.TextColor3 = Color3.fromRGB(180, 180, 180)
MobileTitle.TextSize = 25.000
MobileToggleButton.Name = "MobileToggleButton"
MobileToggleButton.Parent = MobileToggle
MobileToggleButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
MobileToggleButton.BackgroundTransparency = 0.800
MobileToggleButton.Position = UDim2.new(-0.00247826055, 0, -0.0310000032, 0)
MobileToggleButton.Size = UDim2.new(0, 23, 0, 22)
MobileToggleButton.Font = Enum.Font.SourceSans
MobileToggleButton.Text = ""
MobileToggleButton.TextColor3 = Color3.fromRGB(0, 0, 0)
MobileToggleButton.TextSize = 14.000
PCToggle.Name = "PCToggle"
PCToggle.Parent = SazaMain
PCToggle.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
PCToggle.BorderColor3 = Color3.fromRGB(0, 165, 165)
PCToggle.Position = UDim2.new(0.0405063257, 0, 0.46875, 0)
PCToggle.Size = UDim2.new(0, 23, 0, 22)
PCTitle.Name = "PCTitle"
PCTitle.Parent = PCToggle
PCTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
PCTitle.BackgroundTransparency = 1.000
PCTitle.Position = UDim2.new(-2.30434823, 0, -0.636363626, 0)
PCTitle.Size = UDim2.new(0, 200, 0, 50)
PCTitle.Font = Enum.Font.GothamSemibold
PCTitle.Text = "PC"
PCTitle.TextColor3 = Color3.fromRGB(180, 180, 180)
PCTitle.TextSize = 20.000
PCToggleButton.Name = "PCToggleButton"
PCToggleButton.Parent = PCToggle
PCToggleButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
PCToggleButton.BackgroundTransparency = 0.800
PCToggleButton.Position = UDim2.new(-0.00247826055, 0, -0.0310000032, 0)
PCToggleButton.Size = UDim2.new(0, 23, 0, 22)
PCToggleButton.Font = Enum.Font.SourceSans
PCToggleButton.Text = ""
PCToggleButton.TextColor3 = Color3.fromRGB(0, 0, 0)
PCToggleButton.TextSize = 14.000
SazaSystem.Name = "SazaSystem"
SazaSystem.Parent = SazaMain
SazaSystem.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
SazaSystem.BackgroundTransparency = 1.000
SazaSystem.BorderColor3 = Color3.fromRGB(27, 42, 53)
SazaSystem.Position = UDim2.new(0.301265836, 0, 0.566964269, 0)
SazaSystem.Size = UDim2.new(0, 156, 0, 49)
SazaSystem.Font = Enum.Font.GothamSemibold
SazaSystem.Text = "SazaSystem: Thanks for use Saza Hub, Stay Safe!"
SazaSystem.TextColor3 = Color3.fromRGB(180, 180, 180)
SazaSystem.TextSize = 15.000
Outline1.Name = "Outline1"
Outline1.Parent = SazaMain
Outline1.BackgroundColor3 = Color3.fromRGB(0, 172, 172)
Outline1.Position = UDim2.new(0.0253164563, 0, 0.611607075, 0)
Outline1.Size = UDim2.new(0, 374, 0, 3)
LoadText.Name = "LoadText"
LoadText.Parent = SazaMain
LoadText.BackgroundColor3 = Color3.fromRGB(0, 200, 200)
LoadText.Position = UDim2.new(0.182278484, 0, 0.75, 0)
LoadText.Size = UDim2.new(0, 245, 0, 41)
LoadText.Font = Enum.Font.GothamSemibold
LoadText.Text = "Continue..."
LoadText.TextColor3 = Color3.fromRGB(0, 0, 0)
LoadText.TextSize = 14.000
UICorner.Parent = LoadText
TextLabel.Parent = SazaMain
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1.000
TextLabel.Position = UDim2.new(0.237974674, 0, 0.111607142, 0)
TextLabel.Size = UDim2.new(0, 200, 0, 50)
TextLabel.Font = Enum.Font.GothamSemibold
TextLabel.Text = "What device are you using? Choose 1"
TextLabel.TextColor3 = Color3.fromRGB(180, 180, 180)
TextLabel.TextSize = 17.000
local pcsupported = false
local mobilesupported = false
local player = game.Players.LocalPlayer
local TeleportService = game:GetService("TeleportService")
PCToggleButton.MouseButton1Click:Connect(function()
if pcsupported then
game:GetService("TweenService"):Create(PCToggleButton, TweenInfo.new(0.08, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), {BackgroundTransparency = 0.8}):Play()
pcsupported = false
else
game:GetService("TweenService"):Create(PCToggleButton, TweenInfo.new(0.08, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), {BackgroundTransparency = 0}):Play()
pcsupported = true
end
end)
MobileToggleButton.MouseButton1Click:Connect(function()
if mobilesupported then
game:GetService("TweenService"):Create(MobileToggleButton, TweenInfo.new(0.08, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), {BackgroundTransparency = 0.8}):Play()
mobilesupported = false
else
game:GetService("TweenService"):Create(MobileToggleButton, TweenInfo.new(0.08, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), {BackgroundTransparency = 0}):Play()
mobilesupported = true
end
end)
LoadText.MouseButton1Click:Connect(function()
for _, sodi in pairs(SazaMain:GetChildren()) do
sodi:Destroy()
end
local LoadingTXT = Instance.new("TextLabel")
LoadingTXT.Name = "LoadingTXT"
LoadingTXT.Parent = SazaMain
LoadingTXT.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
LoadingTXT.BackgroundTransparency = 1.000
LoadingTXT.BorderSizePixel = 0
LoadingTXT.Position = UDim2.new(0.159999996, 0, 0.406666666, 0)
LoadingTXT.Size = UDim2.new(0.666666687, 0, 0.166666672, 0)
LoadingTXT.Font = Enum.Font.GothamSemibold
LoadingTXT.Text = "Loading..."
LoadingTXT.TextColor3 = Color3.fromRGB(180, 180, 180)
LoadingTXT.TextSize = 14.000
LoadingTXT.TextScaled = true
wait(1)
LoadingTXT.Text = "Getting Data..."
wait(1)
LoadingTXT.Text = "Hello " ..game.Players.LocalPlayer.DisplayName.. " From: ".. code
wait(1)
LoadingTXT.Text = "Game Support!"
wait(1)
if not game:GetService("UserInputService").TouchEnabled and not game:GetService("UserInputService").KeyboardEnabled == false then
LoadingTXT.Text = "Your Device is: PC"
else
LoadingTXT.Text = "Your Device is: Mobile"
end
wait(1)
if game.PlaceId == 6284583030 then
LoadingTXT.Text = "Pet Simulator X"
elseif game.PlaceId == 3102144307 then
LoadingTXT.Text = "Anime Clicker Simulator"
elseif game.PlaceId == 2753915549 or game.PlaceId == 4442272183 or game.PlaceId == 7449423635 then
LoadingTXT.Text = "Blox Fruits"
end
wait(1)
if mobilesupported and game.PlaceId == 3102144307 or game.PlaceId == 2753915549 or game.PlaceId == 4442272183 or game.PlaceId == 7449423635 and not pcsupported then
LoadingTXT.Text = "Not Release yet"
wait(1)
SazaLoader:Destroy()
end
wait(1)
if mobilesupported and game.PlaceId == 6284583030 and not pcsupported then
local decalsyeeted = true
local g = game
local w = g.Workspace
local l = g.Lighting
local t = w.Terrain
t.WaterWaveSize = 0
t.WaterWaveSpeed = 0
t.WaterReflectance = 0
t.WaterTransparency = 0
l.GlobalShadows = false
l.FogEnd = 9e9
l.Brightness = 0
game:GetService("Players").LocalPlayer.PlayerScripts.Scripts.GUIs["Coin Rewards HUD"].Disabled = true
local a = game:GetService("Workspace")["__DEBRIS"]
local b = a:Clone()
b.Parent = a.Parent
a:Destroy()
for _,v in pairs(b:GetChildren()) do
if v.Name == 'RewardBillboard' then
v:Destroy()
end
end
settings().Rendering.QualityLevel = "Level01"
for i,v in pairs(g:GetDescendants()) do
if v:IsA("Part") or v:IsA("Union") or v:IsA("MeshPart") then
v.Material = "Plastic"
v.Reflectance = 0
elseif v:IsA("Decal") and decalsyeeted then
v.Transparency = 1
elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
v.Lifetime = NumberRange.new(0)
end
end
wait(1)
LoadingTXT.Text = "Thank for using Saza Hub"
wait(1)
SazaLoader:Destroy()
wait(1)
loadstring(game:HttpGet('https://raw.githubusercontent.com/KuppaHX/Saza/main/PSXSazaMobile.lua'))()
elseif not mobilesupported and pcsupported then
wait(1)
LoadingTXT.Text = "Thank for using Saza Hub"
wait(1)
SazaLoader:Destroy()
wait(1)
if game.PlaceId == 6284583030 then
loadstring(game:HttpGet('https://raw.githubusercontent.com/KuppaHX/Saza/main/PSX.lua'))()
elseif game.PlaceId == 3102144307 then
loadstring(game:HttpGet'https://raw.githubusercontent.com/KuppaHX/Saza/main/AnimeClicker.lua')()
elseif game.PlaceId == 2753915549 or game.PlaceId == 4442272183 or game.PlaceId == 7449423635 then
loadstring(game:HttpGet'https://raw.githubusercontent.com/KuppaHX/Saza/main/BloxFruits.lua')()
end
elseif mobilesupported and pcsupported then
wait(1)
LoadingTXT.Text = "Bruhhhh You Cannot Choose 2 Device"
wait(1)
LoadingTXT.Text = "Execute Again"
wait(1)
SazaLoader:Destroy()
end
end)