-
Notifications
You must be signed in to change notification settings - Fork 0
/
Injection Screen.lua
261 lines (211 loc) · 10 KB
/
Injection Screen.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
--[[
________ _______ ________ ___ ________ ________ _______ ________
|\ ___ \|\ ___ \ |\ ____\|\ \|\ ____\|\ ___ \|\ ___ \ |\ ___ \
\ \ \_|\ \ \ __/|\ \ \___|\ \ \ \ \___|\ \ \\ \ \ \ __/|\ \ \_|\ \
\ \ \ \\ \ \ \_|/_\ \_____ \ \ \ \ \ __\ \ \\ \ \ \ \_|/_\ \ \ \\ \
\ \ \_\\ \ \ \_|\ \|____|\ \ \ \ \ \|\ \ \ \\ \ \ \ \_|\ \ \ \_\\ \
\ \_______\ \_______\____\_\ \ \__\ \_______\ \__\\ \__\ \_______\ \_______\
\|_______|\|_______|\_________\|__|\|_______|\|__| \|__|\|_______|\|_______|
________ ___ ____________|
|\ __ \ |\ \ / /|
\ \ \|\ /_ \ \ \/ / /
\ \ __ \ \ \ / /
\ \ \|\ \ \/ / /
\ \_______\__/ / /
\|_______|\___/ /
________ _________ ________ ___
|\ ___ \|\ \ |\ \|\ __ \|\ \
\ \ \\ \ \ \ \\_\ \ \ \|\ \ \ \
\ \ \\ \ \ \______ \ \ _ _\ \ \
\ \ \\ \ \|_____|\ \ \ \\ \\ \ \
\ \__\\ \__\ \ \__\ \__\\ _\\ \__\
___\|_____|__| \|__|\|__|\|__|\|__|
|\ \ / /|
\ \ \/ / /
\ \ / /
/ \/
/ /\ \
/__/ /\ __\
|_________|________ ________ ________ ___ ___
|\ __ \|\ __ \|\ __ \|\ __ \ |\ \ / /|
\ \ \|\ /\ \ \|\ \ \ \|\ /\ \ \|\ /_ \ \ \/ / /
\ \ __ \ \ \\\ \ \ __ \ \ __ \ \ \ / /
\ \ \|\ \ \ \\\ \ \ \|\ \ \ \|\ \ \/ / /
\ \_______\ \_______\ \_______\ \_______\__/ / /
\|_______|\|_______|\|_______|\|_______|\___/ /
\|___|/
Nihon Injection Screen [2] by N4ri x Bobby
Designed for ImmuneLion318 @ Nihon
This Injection Screen is not designed to be redistributed / resold to other Executors!
This Design is made for Nihon only! If this is rebranded by other Executors, they have stolen it from Nihon!
If you want your own Injection Screen, please contact N4ri @norimiyazaki on Discord!
]]--
-- This part of the code was taken from here:
-- https://scriptinghelpers.org/questions/78269/is-it-possible-to-generate-a-random-string-of-numbers-letters-and-symbols
-- This is to make detection on Games slightly harder as they cannot look for a specific name
local upperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
local lowerCase = "abcdefghijklmnopqrstuvwxyz"
local numbers = "0123456789"
local symbols = "!@#$%&()*+-,./\:;<=>?^[]{}"
local characterSet = upperCase .. lowerCase .. numbers .. symbols
local keyLength = 32
local NihonName = ""
for i = 1, keyLength do
local rand = math.random(#characterSet)
NihonName = NihonName .. string.sub(characterSet, rand, rand)
end
local NihonInjectionScreenV2 = Instance.new("ScreenGui")
local Main = Instance.new("Frame")
local TextBackground = Instance.new("ImageLabel")
local Logo = Instance.new("ImageLabel")
local UICorner = Instance.new("UICorner")
local TextFrame = Instance.new("Frame")
local TFName = Instance.new("TextLabel")
local Description = Instance.new("TextLabel")
NihonInjectionScreenV2.Name = NihonName
NihonInjectionScreenV2.Parent = game.CoreGui
NihonInjectionScreenV2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Main.Name = "Main"
Main.Parent = NihonInjectionScreenV2
Main.AnchorPoint = Vector2.new(0.5, 0.5)
Main.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
Main.BorderColor3 = Color3.fromRGB(0, 0, 0)
Main.BorderSizePixel = 0
Main.ClipsDescendants = true
Main.Position = UDim2.new(0.5, 0, 0.5, -20)
Main.Size = UDim2.new(1, 0, 1, 40)
Main.Visible = false
TextBackground.Name = "TextBackground"
TextBackground.Parent = Main
TextBackground.AnchorPoint = Vector2.new(0.5, 0.5)
TextBackground.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextBackground.BackgroundTransparency = 1.000
TextBackground.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextBackground.BorderSizePixel = 0
TextBackground.Position = UDim2.new(0.5, 0, 0.5, 0)
TextBackground.Size = UDim2.new(1, 0, 1, 0)
TextBackground.Image = "http://www.roblox.com/asset/?id=13980868617"
TextBackground.ImageColor3 = Color3.fromRGB(25, 25, 25)
TextBackground.ScaleType = Enum.ScaleType.Tile
TextBackground.TileSize = UDim2.new(0, 75, 0, 37)
Logo.Name = "Logo"
Logo.Parent = Main
Logo.AnchorPoint = Vector2.new(0.5, 0.5)
Logo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Logo.BackgroundTransparency = 1.000
Logo.BorderSizePixel = 0
Logo.ClipsDescendants = true
Logo.Position = UDim2.new(0.5, 0, 0.5, 0)
Logo.Size = UDim2.new(0, 115, 0, 115)
Logo.Image = "http://www.roblox.com/asset/?id=13980762149"
UICorner.CornerRadius = UDim.new(0, 4)
UICorner.Parent = Main
TextFrame.Name = "TextFrame"
TextFrame.Parent = Main
TextFrame.AnchorPoint = Vector2.new(0.5, 0.5)
TextFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextFrame.BackgroundTransparency = 1.000
TextFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextFrame.BorderSizePixel = 0
TextFrame.Position = UDim2.new(0.5, 159, 0.5, 0)
TextFrame.Size = UDim2.new(0, 103, 0, 58)
TFName.Name = "TFName"
TFName.Parent = TextFrame
TFName.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TFName.BackgroundTransparency = 1.000
TFName.BorderColor3 = Color3.fromRGB(0, 0, 0)
TFName.BorderSizePixel = 0
TFName.ClipsDescendants = true
TFName.Size = UDim2.new(1, 0, 0, 36)
TFName.Font = Enum.Font.SourceSans
TFName.Text = "日本"
TFName.TextColor3 = Color3.fromRGB(255, 255, 255)
TFName.TextSize = 40.000
TFName.TextTransparency = 1.000
TFName.TextXAlignment = Enum.TextXAlignment.Left
Description.Name = "Description"
Description.Parent = TextFrame
Description.AnchorPoint = Vector2.new(0, 1)
Description.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Description.BackgroundTransparency = 1.000
Description.BorderColor3 = Color3.fromRGB(0, 0, 0)
Description.BorderSizePixel = 0
Description.ClipsDescendants = true
Description.Position = UDim2.new(0, 0, 1, 0)
Description.Size = UDim2.new(1, 0, 0, 22)
Description.Font = Enum.Font.SourceSans
Description.Text = "ゲームの未来。"
Description.TextColor3 = Color3.fromRGB(255, 255, 255)
Description.TextSize = 20.000
Description.TextTransparency = 1.000
Description.TextXAlignment = Enum.TextXAlignment.Left
local function TIBAKZY_fake_script()
local script = Instance.new('LocalScript', NihonInjectionScreenV2)
BFrame = script.Parent.Main
TB = BFrame.TextBackground
Logo = BFrame.Logo
TFrame = BFrame.TextFrame
Name = TFrame.TFName
Desc = TFrame.Description
-- Set Properties Values
BFrame.Visible = true
BFrame.Transparency = 1
Logo.ImageTransparency = 1
TB.ImageTransparency = 1
Name.TextTransparency = 1
Desc.TextTransparency = 1
TFrame.Position = UDim2.new(0.5,150,0.5,0)
Logo.Size = UDim2.new(0,115,0,115)
-- Wait until the Game is Loaded
repeat task.wait(1) until game:IsLoaded()
-- Install the Blurring Effect
BlurRadius = 0
BlurEffect = Instance.new("BlurEffect", game.Lighting)
-- Fade in Nihon Logo
game:GetService("TweenService"):Create(Logo, TweenInfo.new(1), {ImageTransparency = 0}):Play()
-- Fade in Blurring Effect
for i=1, 50 do
BlurRadius = BlurRadius+1
BlurEffect.Size = BlurRadius
task.wait(0.01)
end
-- Fade in Background and Text Background
game:GetService("TweenService"):Create(BFrame, TweenInfo.new(1), {Transparency = 0}):Play()
game:GetService("TweenService"):Create(TB, TweenInfo.new(1), {ImageTransparency = 0}):Play()
-- Wait 2 Seconds
task.wait(2)
-- Remove Blurring Effect
BlurEffect:Destroy()
-- Shrink Background and Logo
BFrame:TweenSize(UDim2.new(0, 248,0, 153), "Out", "Quad", 1, true)
Logo:TweenSize(UDim2.new(0, 80, 0, 80), "Out", "Quad", 1, true)
-- Wait 1 Second
task.wait(1)
-- Shift Position of Logo and Text Frame so that they are next to each other
Logo:TweenPosition(UDim2.new(0.5,-50,0.5,0), "Out", "Quad", 1, true)
TFrame:TweenPosition(UDim2.new(0.5,50,0.5,0), "Out", "Quad", 1, true)
-- Fade in Name and Description
game:GetService("TweenService"):Create(Name, TweenInfo.new(1), {TextTransparency = 0}):Play()
game:GetService("TweenService"):Create(Desc, TweenInfo.new(1), {TextTransparency = 0}):Play()
-- Wait 2 Seconds
task.wait(2)
-- Return Logo and TextFrame to Original Position
Logo:TweenPosition(UDim2.new(0.5,0,0.5,0), "Out", "Quad", 1, true)
TFrame:TweenPosition(UDim2.new(0.5,150,0.5,0), "Out", "Quad", 1, true)
-- Fade out Background and Text Background
game:GetService("TweenService"):Create(Name, TweenInfo.new(1), {TextTransparency = 1}):Play()
game:GetService("TweenService"):Create(Desc, TweenInfo.new(1), {TextTransparency = 1}):Play()
-- Wait 2 Seconds
task.wait(2)
-- Shrink Background into a Square
BFrame:TweenSize(UDim2.new(0, 153,0, 153), "Out", "Quad", 0.5, true)
task.wait(0.5)
-- Shrink Background and Logo into Nothing
Logo:TweenSize(UDim2.new(0, 0, 0, 0), "Out", "Quad", 0.5, true)
BFrame:TweenSize(UDim2.new(0, 0, 0, 0), "Out", "Quad", 0.5, true)
-- Wait 1 Second
task.wait(1)
-- Remove GUI Entirely
script.Parent:Destroy()
end
coroutine.wrap(TIBAKZY_fake_script)()