SHOW:
|
|
- or go back to the newest paste.
1 | --https://github.com/Mokiros/roblox-FE-compatibility | |
2 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end | |
3 | local Player,game,owner = owner,game | |
4 | local RealPlayer = Player | |
5 | do | |
6 | print("FE Compatibility code V2 by Mokiros") | |
7 | local RealPlayer = RealPlayer | |
8 | script.Parent = RealPlayer.Character | |
9 | ||
10 | --Fake event to make stuff like Mouse.KeyDown work | |
11 | local Disconnect_Function = function(this) | |
12 | this[1].Functions[this[2]] = nil | |
13 | end | |
14 | local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}} | |
15 | local FakeEvent_Metatable = {__index={ | |
16 | Connect = function(this,f) | |
17 | local i = tostring(math.random(0,10000)) | |
18 | while this.Functions[i] do | |
19 | i = tostring(math.random(0,10000)) | |
20 | end | |
21 | this.Functions[i] = f | |
22 | return setmetatable({this,i},Disconnect_Metatable) | |
23 | end | |
24 | }} | |
25 | FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect | |
26 | local function fakeEvent() | |
27 | return setmetatable({Functions={}},FakeEvent_Metatable) | |
28 | end | |
29 | ||
30 | --Creating fake input objects with fake variables | |
31 | local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()} | |
32 | FakeMouse.keyUp = FakeMouse.KeyUp | |
33 | FakeMouse.keyDown = FakeMouse.KeyDown | |
34 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()} | |
35 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...) | |
36 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil | |
37 | end} | |
38 | --Merged 2 functions into one by checking amount of arguments | |
39 | CAS.UnbindAction = CAS.BindAction | |
40 | ||
41 | --This function will trigger the events that have been :Connect()'ed | |
42 | local function TriggerEvent(self,ev,...) | |
43 | for _,f in pairs(self[ev].Functions) do | |
44 | f(...) | |
45 | end | |
46 | end | |
47 | FakeMouse.TriggerEvent = TriggerEvent | |
48 | UIS.TriggerEvent = TriggerEvent | |
49 | ||
50 | --Client communication | |
51 | local Event = Instance.new("RemoteEvent") | |
52 | Event.Name = "UserInput_Event" | |
53 | Event.OnServerEvent:Connect(function(plr,io) | |
54 | if plr~=RealPlayer then return end | |
55 | FakeMouse.Target = io.Target | |
56 | FakeMouse.Hit = io.Hit | |
57 | if not io.isMouse then | |
58 | local b = io.UserInputState == Enum.UserInputState.Begin | |
59 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
60 | return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up") | |
61 | end | |
62 | if io.UserInputType == Enum.UserInputType.MouseButton2 then | |
63 | return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up") | |
64 | end | |
65 | for _,t in pairs(CAS.Actions) do | |
66 | for _,k in pairs(t.Keys) do | |
67 | if k==io.KeyCode then | |
68 | t.Function(t.Name,io.UserInputState,io) | |
69 | end | |
70 | end | |
71 | end | |
72 | FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
73 | UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false) | |
74 | end | |
75 | end) | |
76 | Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event") | |
77 | local Mouse = owner:GetMouse() | |
78 | local UIS = game:GetService("UserInputService") | |
79 | local input = function(io,RobloxHandled) | |
80 | if RobloxHandled then return end | |
81 | --Since InputObject is a client-side instance, we create and pass table instead | |
82 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target}) | |
83 | end | |
84 | UIS.InputBegan:Connect(input) | |
85 | UIS.InputEnded:Connect(input) | |
86 | ||
87 | local h,t | |
88 | --Give the server mouse data every second frame, but only if the values changed | |
89 | --If player is not moving their mouse, client won't fire events | |
90 | local HB = game:GetService("RunService").Heartbeat | |
91 | while true do | |
92 | if h~=Mouse.Hit or t~=Mouse.Target then | |
93 | h,t=Mouse.Hit,Mouse.Target | |
94 | Event:FireServer({isMouse=true,Target=t,Hit=h}) | |
95 | end | |
96 | --Wait 2 frames | |
97 | for i=1,2 do | |
98 | HB:Wait() | |
99 | end | |
100 | end]==],script) | |
101 | ||
102 | ----Sandboxed game object that allows the usage of client-side methods and services | |
103 | --Real game object | |
104 | local RealGame = game | |
105 | ||
106 | --Metatable for fake service | |
107 | local FakeService_Metatable = { | |
108 | __index = function(self,k) | |
109 | local s = rawget(self,"_RealService") | |
110 | if s then | |
111 | return typeof(s[k])=="function" | |
112 | and function(_,...)return s[k](s,...)end or s[k] | |
113 | end | |
114 | end, | |
115 | __newindex = function(self,k,v) | |
116 | local s = rawget(self,"_RealService") | |
117 | if s then s[k]=v end | |
118 | end | |
119 | } | |
120 | local function FakeService(t,RealService) | |
121 | t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService | |
122 | return setmetatable(t,FakeService_Metatable) | |
123 | end | |
124 | ||
125 | --Fake game object | |
126 | local FakeGame = { | |
127 | GetService = function(self,s) | |
128 | return rawget(self,s) or RealGame:GetService(s) | |
129 | end, | |
130 | Players = FakeService({ | |
131 | LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player) | |
132 | },"Players"), | |
133 | UserInputService = FakeService(UIS,"UserInputService"), | |
134 | ContextActionService = FakeService(CAS,"ContextActionService"), | |
135 | RunService = FakeService({ | |
136 | _btrs = {}, | |
137 | RenderStepped = RealGame:GetService("RunService").Heartbeat, | |
138 | BindToRenderStep = function(self,name,_,fun) | |
139 | self._btrs[name] = self.Heartbeat:Connect(fun) | |
140 | end, | |
141 | UnbindFromRenderStep = function(self,name) | |
142 | self._btrs[name]:Disconnect() | |
143 | end, | |
144 | },"RunService") | |
145 | } | |
146 | rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer) | |
147 | FakeGame.service = FakeGame.GetService | |
148 | FakeService(FakeGame,game) | |
149 | --Changing owner to fake player object to support owner:GetMouse() | |
150 | game,owner = FakeGame,FakeGame.Players.LocalPlayer | |
151 | end | |
152 | ||
153 | -- Objects | |
154 | ||
155 | local ScreenGui = Instance.new("ScreenGui") | |
156 | local MainFrame = Instance.new("Frame") | |
157 | local texture = Instance.new("ImageLabel") | |
158 | local title = Instance.new("TextLabel") | |
159 | local scripts = Instance.new("TextButton") | |
160 | local fescripts = Instance.new("TextButton") | |
161 | local executer = Instance.new("TextButton") | |
162 | local fecheck = Instance.new("TextButton") | |
163 | local Close = Instance.new("TextButton") | |
164 | local TextLabel = Instance.new("TextLabel") | |
165 | local ExecuterFrame = Instance.new("Frame") | |
166 | local title_2 = Instance.new("TextLabel") | |
167 | local Exit3 = Instance.new("TextButton") | |
168 | local script = Instance.new("TextBox") | |
169 | local execute = Instance.new("TextButton") | |
170 | local clear = Instance.new("TextButton") | |
171 | local ScriptesFrame = Instance.new("Frame") | |
172 | local title_3 = Instance.new("TextLabel") | |
173 | local Infiniteyeild = Instance.new("TextButton") | |
174 | local Rocky2u = Instance.new("TextButton") | |
175 | local Grabknifev4 = Instance.new("TextButton") | |
176 | local Grabknifev3 = Instance.new("TextButton") | |
177 | local hoverbike = Instance.new("TextButton") | |
178 | local vangui = Instance.new("TextButton") | |
179 | local Exit1 = Instance.new("TextButton") | |
180 | local thomas = Instance.new("TextButton") | |
181 | local mustardgas = Instance.new("TextButton") | |
182 | local greenfire = Instance.new("TextButton") | |
183 | local monkey = Instance.new("TextButton") | |
184 | local roexploit = Instance.new("TextButton") | |
185 | local moonman = Instance.new("TextButton") | |
186 | local bombvest = Instance.new("TextButton") | |
187 | local esp = Instance.new("TextButton") | |
188 | local duck = Instance.new("TextButton") | |
189 | local FEScriptsFrame = Instance.new("Frame") | |
190 | local title_4 = Instance.new("TextLabel") | |
191 | local FEGod = Instance.new("TextButton") | |
192 | local FEFly = Instance.new("TextButton") | |
193 | local FEGui = Instance.new("TextButton") | |
194 | local Exit2 = Instance.new("TextButton") | |
195 | ||
196 | -- Properties | |
197 | ||
198 | ScreenGui.Parent = game.CoreGui | |
199 | ||
200 | MainFrame.Name = "MainFrame" | |
201 | MainFrame.Parent = ScreenGui | |
202 | MainFrame.Active = true | |
203 | MainFrame.BackgroundColor3 = Color3.new(0, 1, 1) | |
204 | MainFrame.Draggable = true | |
205 | MainFrame.Position = UDim2.new(0, 52, 0, 95) | |
206 | MainFrame.Size = UDim2.new(0, 250, 0, 425) | |
207 | ||
208 | texture.Name = "texture" | |
209 | texture.Parent = MainFrame | |
210 | texture.BackgroundColor3 = Color3.new(1, 1, 1) | |
211 | texture.Position = UDim2.new(0, 0, 0, 40) | |
212 | texture.Size = UDim2.new(0, 250, 0, 385) | |
213 | texture.Image = "rbxassetid://66011528" | |
214 | ||
215 | title.Name = "title" | |
216 | title.Parent = MainFrame | |
217 | title.BackgroundColor3 = Color3.new(0, 1, 1) | |
218 | title.Size = UDim2.new(0, 177, 0, 50) | |
219 | title.Font = Enum.Font.SourceSans | |
220 | title.Text = "Sky Hub V1" | |
221 | title.TextColor3 = Color3.new(0, 0, 0) | |
222 | title.TextScaled = true | |
223 | title.TextSize = 14 | |
224 | title.TextWrapped = true | |
225 | ||
226 | scripts.Name = "scripts" | |
227 | scripts.Parent = MainFrame | |
228 | scripts.BackgroundColor3 = Color3.new(0, 1, 1) | |
229 | scripts.Position = UDim2.new(0, 21, 0, 91) | |
230 | scripts.Size = UDim2.new(0, 204, 0, 50) | |
231 | scripts.Font = Enum.Font.SourceSans | |
232 | scripts.Text = "Scripts" | |
233 | scripts.TextColor3 = Color3.new(0, 0, 0) | |
234 | scripts.TextScaled = true | |
235 | scripts.TextSize = 14 | |
236 | scripts.TextWrapped = true | |
237 | ||
238 | scripts.MouseButton1Down:connect(function() | |
239 | ScriptesFrame.Visible = true | |
240 | end) | |
241 | ||
242 | fescripts.Name = "fe scripts" | |
243 | fescripts.Parent = MainFrame | |
244 | fescripts.BackgroundColor3 = Color3.new(0, 1, 1) | |
245 | fescripts.Position = UDim2.new(0, 23, 0, 165) | |
246 | fescripts.Size = UDim2.new(0, 204, 0, 50) | |
247 | fescripts.Font = Enum.Font.SourceSans | |
248 | fescripts.Text = "FE Scripts" | |
249 | fescripts.TextColor3 = Color3.new(0, 0, 0) | |
250 | fescripts.TextScaled = true | |
251 | fescripts.TextSize = 14 | |
252 | fescripts.TextWrapped = true | |
253 | ||
254 | fescripts.MouseButton1Down:connect(function() | |
255 | FEScriptsFrame.Visible = true | |
256 | end) | |
257 | ||
258 | executer.Name = "executer" | |
259 | executer.Parent = MainFrame | |
260 | executer.BackgroundColor3 = Color3.new(0, 1, 1) | |
261 | executer.Position = UDim2.new(0, 23, 0, 233) | |
262 | executer.Size = UDim2.new(0, 204, 0, 50) | |
263 | executer.Font = Enum.Font.SourceSans | |
264 | executer.Text = "Executer" | |
265 | executer.TextColor3 = Color3.new(0, 0, 0) | |
266 | executer.TextScaled = true | |
267 | executer.TextSize = 14 | |
268 | executer.TextWrapped = true | |
269 | ||
270 | executer.MouseButton1Down:connect(function() | |
271 | ExecuterFrame.Visible = true | |
272 | end) | |
273 | ||
274 | fecheck.Name = "fe check" | |
275 | fecheck.Parent = MainFrame | |
276 | fecheck.BackgroundColor3 = Color3.new(0, 1, 1) | |
277 | fecheck.Position = UDim2.new(0, 23, 0, 303) | |
278 | fecheck.Size = UDim2.new(0, 204, 0, 50) | |
279 | fecheck.Font = Enum.Font.SourceSans | |
280 | fecheck.Text = "FE Check (F9)" | |
281 | fecheck.TextColor3 = Color3.new(0, 0, 0) | |
282 | fecheck.TextScaled = true | |
283 | fecheck.TextSize = 14 | |
284 | fecheck.TextWrapped = true | |
285 | ||
286 | fecheck.MouseButton1Down:connect(function() | |
287 | loadstring(game:GetObjects("rbxassetid://01272930501")[1].Source)() | |
288 | end) | |
289 | ||
290 | Close.Name = "Close" | |
291 | Close.Parent = MainFrame | |
292 | Close.BackgroundColor3 = Color3.new(0, 1, 1) | |
293 | Close.Position = UDim2.new(0, 175, 0, 0) | |
294 | Close.Size = UDim2.new(0, 75, 0, 50) | |
295 | Close.Font = Enum.Font.SourceSans | |
296 | Close.Text = "X" | |
297 | Close.TextColor3 = Color3.new(0, 0, 0) | |
298 | Close.TextScaled = true | |
299 | Close.TextSize = 14 | |
300 | Close.TextWrapped = true | |
301 | ||
302 | Close.MouseButton1Down:connect(function() | |
303 | MainFrame.Visible = false | |
304 | end) | |
305 | ||
306 | TextLabel.Parent = MainFrame | |
307 | TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) | |
308 | TextLabel.BackgroundTransparency = 1 | |
309 | TextLabel.Position = UDim2.new(0, 0, 0, 375) | |
310 | TextLabel.Size = UDim2.new(0, 250, 0, 50) | |
311 | TextLabel.Font = Enum.Font.SourceSans | |
312 | TextLabel.Text = "Made By XScriptes#8293" | |
313 | TextLabel.TextColor3 = Color3.new(0, 0, 0) | |
314 | TextLabel.TextScaled = true | |
315 | TextLabel.TextSize = 14 | |
316 | TextLabel.TextWrapped = true | |
317 | ||
318 | ExecuterFrame.Name = "ExecuterFrame" | |
319 | ExecuterFrame.Parent = ScreenGui | |
320 | ExecuterFrame.Active = true | |
321 | ExecuterFrame.BackgroundColor3 = Color3.new(0, 1, 1) | |
322 | ExecuterFrame.Draggable = true | |
323 | ExecuterFrame.Position = UDim2.new(0, 343, 0, 109) | |
324 | ExecuterFrame.Size = UDim2.new(0, 512, 0, 438) | |
325 | ExecuterFrame.Visible = false | |
326 | ||
327 | title_2.Name = "title" | |
328 | title_2.Parent = ExecuterFrame | |
329 | title_2.BackgroundColor3 = Color3.new(0, 1, 1) | |
330 | title_2.Size = UDim2.new(0, 512, 0, 50) | |
331 | title_2.Font = Enum.Font.SourceSans | |
332 | title_2.Text = "Script Executer" | |
333 | title_2.TextColor3 = Color3.new(0, 0, 0) | |
334 | title_2.TextScaled = true | |
335 | title_2.TextSize = 14 | |
336 | title_2.TextWrapped = true | |
337 | ||
338 | Exit3.Name = "Exit3" | |
339 | Exit3.Parent = ExecuterFrame | |
340 | Exit3.BackgroundColor3 = Color3.new(0, 1, 1) | |
341 | Exit3.Position = UDim2.new(0, 390, 0, 0) | |
342 | Exit3.Size = UDim2.new(0, 122, 0, 50) | |
343 | Exit3.Font = Enum.Font.SourceSans | |
344 | Exit3.Text = "Exit" | |
345 | Exit3.TextScaled = true | |
346 | Exit3.TextSize = 14 | |
347 | Exit3.TextWrapped = true | |
348 | ||
349 | Exit3.MouseButton1Down:connect(function() | |
350 | ExecuterFrame.Visible = false | |
351 | end) | |
352 | ||
353 | script.Name = "script" | |
354 | script.Parent = ExecuterFrame | |
355 | script.BackgroundColor3 = Color3.new(0, 1, 1) | |
356 | script.Position = UDim2.new(0, 27, 0, 63) | |
357 | script.Size = UDim2.new(0, 458, 0, 311) | |
358 | script.Font = Enum.Font.SourceSans | |
359 | script.Text = "Script Here" | |
360 | script.TextColor3 = Color3.new(0, 0, 0) | |
361 | script.TextSize = 30 | |
362 | script.TextWrapped = true | |
363 | ||
364 | execute.Name = "execute" | |
365 | execute.Parent = ExecuterFrame | |
366 | execute.BackgroundColor3 = Color3.new(0, 1, 1) | |
367 | execute.Position = UDim2.new(0, 37, 0, 388) | |
368 | execute.Size = UDim2.new(0, 200, 0, 50) | |
369 | execute.Font = Enum.Font.SourceSans | |
370 | execute.Text = "Execute" | |
371 | execute.TextColor3 = Color3.new(0, 0, 0) | |
372 | execute.TextScaled = true | |
373 | execute.TextSize = 14 | |
374 | execute.TextWrapped = true | |
375 | ||
376 | execute.MouseButton1Down:connect(function() | |
377 | loadstring(script.Text)() | |
378 | end) | |
379 | ||
380 | clear.Name = "clear" | |
381 | clear.Parent = ExecuterFrame | |
382 | clear.BackgroundColor3 = Color3.new(0, 1, 1) | |
383 | clear.Position = UDim2.new(0, 287, 0, 388) | |
384 | clear.Size = UDim2.new(0, 200, 0, 50) | |
385 | clear.Font = Enum.Font.SourceSans | |
386 | clear.Text = "Clear" | |
387 | clear.TextColor3 = Color3.new(0, 0, 0) | |
388 | clear.TextScaled = true | |
389 | clear.TextSize = 14 | |
390 | clear.TextWrapped = true | |
391 | ||
392 | clear.MouseButton1Down:connect(function() | |
393 | script.Text = "" | |
394 | end) | |
395 | ||
396 | ScriptesFrame.Name = "ScriptesFrame" | |
397 | ScriptesFrame.Parent = ScreenGui | |
398 | ScriptesFrame.Active = true | |
399 | ScriptesFrame.BackgroundColor3 = Color3.new(0, 1, 1) | |
400 | ScriptesFrame.Draggable = true | |
401 | ScriptesFrame.Position = UDim2.new(0, 362, 0, 129) | |
402 | ScriptesFrame.Size = UDim2.new(0, 610, 0, 405) | |
403 | ScriptesFrame.Visible = false | |
404 | ||
405 | title_3.Name = "title" | |
406 | title_3.Parent = ScriptesFrame | |
407 | title_3.BackgroundColor3 = Color3.new(0, 1, 1) | |
408 | title_3.Size = UDim2.new(0, 610, 0, 50) | |
409 | title_3.Font = Enum.Font.SourceSans | |
410 | title_3.Text = "Scripts" | |
411 | title_3.TextColor3 = Color3.new(0, 0, 0) | |
412 | title_3.TextScaled = true | |
413 | title_3.TextSize = 14 | |
414 | title_3.TextWrapped = true | |
415 | ||
416 | Infiniteyeild.Name = "Infinite yeild" | |
417 | Infiniteyeild.Parent = ScriptesFrame | |
418 | Infiniteyeild.BackgroundColor3 = Color3.new(0, 1, 1) | |
419 | Infiniteyeild.Position = UDim2.new(0, 0, 0, 85) | |
420 | Infiniteyeild.Size = UDim2.new(0, 200, 0, 50) | |
421 | Infiniteyeild.Font = Enum.Font.SourceSans | |
422 | Infiniteyeild.Text = "Infinite Yeild" | |
423 | Infiniteyeild.TextColor3 = Color3.new(0, 0, 0) | |
424 | Infiniteyeild.TextScaled = true | |
425 | Infiniteyeild.TextSize = 14 | |
426 | Infiniteyeild.TextWrapped = true | |
427 | ||
428 | Infiniteyeild.MouseButton1Down:connect(function() | |
429 | loadstring(game:HttpGet(('https://pastebin.com/raw/MjBzRjmT'),true))() | |
430 | end) | |
431 | ||
432 | Rocky2u.Name = "Rocky2u" | |
433 | Rocky2u.Parent = ScriptesFrame | |
434 | Rocky2u.BackgroundColor3 = Color3.new(0, 1, 1) | |
435 | Rocky2u.Position = UDim2.new(0, 0, 0, 153) | |
436 | Rocky2u.Size = UDim2.new(0, 200, 0, 50) | |
437 | Rocky2u.Font = Enum.Font.SourceSans | |
438 | Rocky2u.Text = "Rocky2u" | |
439 | Rocky2u.TextColor3 = Color3.new(0, 0, 0) | |
440 | Rocky2u.TextScaled = true | |
441 | Rocky2u.TextSize = 14 | |
442 | Rocky2u.TextWrapped = true | |
443 | ||
444 | Rocky2u.MouseButton1Down:connect(function() | |
445 | loadstring(game:GetObjects("rbxassetid://01268206293")[1].Source)() | |
446 | end) | |
447 | ||
448 | Grabknifev4.Name = "Grab knife v4" | |
449 | Grabknifev4.Parent = ScriptesFrame | |
450 | Grabknifev4.BackgroundColor3 = Color3.new(0, 1, 1) | |
451 | Grabknifev4.Position = UDim2.new(0, 0, 0, 224) | |
452 | Grabknifev4.Size = UDim2.new(0, 200, 0, 50) | |
453 | Grabknifev4.Font = Enum.Font.SourceSans | |
454 | Grabknifev4.Text = "Grab Knife V4" | |
455 | Grabknifev4.TextColor3 = Color3.new(0, 0, 0) | |
456 | Grabknifev4.TextScaled = true | |
457 | Grabknifev4.TextSize = 14 | |
458 | Grabknifev4.TextWrapped = true | |
459 | ||
460 | Grabknifev4.MouseButton1Down:connect(function() | |
461 | loadstring(game:GetObjects("rbxassetid://01268212985")[1].Source)() | |
462 | end) | |
463 | ||
464 | Grabknifev3.Name = "Grab knife v3" | |
465 | Grabknifev3.Parent = ScriptesFrame | |
466 | Grabknifev3.BackgroundColor3 = Color3.new(0, 1, 1) | |
467 | Grabknifev3.Position = UDim2.new(0, 0, 0, 290) | |
468 | Grabknifev3.Size = UDim2.new(0, 200, 0, 50) | |
469 | Grabknifev3.Font = Enum.Font.SourceSans | |
470 | Grabknifev3.Text = "Grab Knife V3" | |
471 | Grabknifev3.TextColor3 = Color3.new(0, 0, 0) | |
472 | Grabknifev3.TextScaled = true | |
473 | Grabknifev3.TextSize = 14 | |
474 | Grabknifev3.TextWrapped = true | |
475 | ||
476 | Grabknifev3.MouseButton1Down:connect(function() | |
477 | loadstring(game:GetObjects("rbxassetid://01268218977")[1].Source)() | |
478 | end) | |
479 | ||
480 | hoverbike.Name = "hover bike" | |
481 | hoverbike.Parent = ScriptesFrame | |
482 | hoverbike.BackgroundColor3 = Color3.new(0, 1, 1) | |
483 | hoverbike.Position = UDim2.new(0, 0, 0, 355) | |
484 | hoverbike.Size = UDim2.new(0, 200, 0, 50) | |
485 | hoverbike.Font = Enum.Font.SourceSans | |
486 | hoverbike.Text = "Hover Bike" | |
487 | hoverbike.TextColor3 = Color3.new(0, 0, 0) | |
488 | hoverbike.TextScaled = true | |
489 | hoverbike.TextSize = 14 | |
490 | hoverbike.TextWrapped = true | |
491 | ||
492 | hoverbike.MouseButton1Down:connect(function() | |
493 | loadstring(game:GetObjects("rbxassetid://01268225564")[1].Source)() | |
494 | end) | |
495 | ||
496 | vangui.Name = "van gui" | |
497 | vangui.Parent = ScriptesFrame | |
498 | vangui.BackgroundColor3 = Color3.new(0, 1, 1) | |
499 | vangui.Position = UDim2.new(0, 223, 0, 86) | |
500 | vangui.Size = UDim2.new(0, 200, 0, 50) | |
501 | vangui.Font = Enum.Font.SourceSans | |
502 | vangui.Text = "Van Gui" | |
503 | vangui.TextColor3 = Color3.new(0, 0, 0) | |
504 | vangui.TextScaled = true | |
505 | vangui.TextSize = 14 | |
506 | vangui.TextWrapped = true | |
507 | ||
508 | vangui.MouseButton1Down:connect(function() | |
509 | loadstring(game:GetObjects("rbxassetid://01268231998")[1].Source)() | |
510 | end) | |
511 | ||
512 | Exit1.Name = "Exit1" | |
513 | Exit1.Parent = ScriptesFrame | |
514 | Exit1.BackgroundColor3 = Color3.new(0, 1, 1) | |
515 | Exit1.Position = UDim2.new(0, 410, 0, 0) | |
516 | Exit1.Size = UDim2.new(0, 200, 0, 50) | |
517 | Exit1.Font = Enum.Font.SourceSans | |
518 | Exit1.Text = "Exit" | |
519 | Exit1.TextColor3 = Color3.new(0, 0, 0) | |
520 | Exit1.TextScaled = true | |
521 | Exit1.TextSize = 14 | |
522 | Exit1.TextWrapped = true | |
523 | ||
524 | Exit1.MouseButton1Down:connect(function() | |
525 | ScriptesFrame.Visible = false | |
526 | end) | |
527 | ||
528 | thomas.Name = "thomas" | |
529 | thomas.Parent = ScriptesFrame | |
530 | thomas.BackgroundColor3 = Color3.new(0, 1, 1) | |
531 | thomas.Position = UDim2.new(0, 221, 0, 152) | |
532 | thomas.Size = UDim2.new(0, 200, 0, 50) | |
533 | thomas.Font = Enum.Font.SourceSans | |
534 | thomas.Text = "Thomas" | |
535 | thomas.TextColor3 = Color3.new(0, 0, 0) | |
536 | thomas.TextScaled = true | |
537 | thomas.TextSize = 14 | |
538 | thomas.TextWrapped = true | |
539 | ||
540 | thomas.MouseButton1Down:connect(function() | |
541 | loadstring(game:GetObjects("rbxassetid://01268238370")[1].Source)() | |
542 | end) | |
543 | ||
544 | mustardgas.Name = "mustard gas" | |
545 | mustardgas.Parent = ScriptesFrame | |
546 | mustardgas.BackgroundColor3 = Color3.new(0, 1, 1) | |
547 | mustardgas.Position = UDim2.new(0, 223, 0, 223) | |
548 | mustardgas.Size = UDim2.new(0, 200, 0, 50) | |
549 | mustardgas.Font = Enum.Font.SourceSans | |
550 | mustardgas.Text = "Mustard Gas" | |
551 | mustardgas.TextColor3 = Color3.new(0, 0, 0) | |
552 | mustardgas.TextScaled = true | |
553 | mustardgas.TextSize = 14 | |
554 | mustardgas.TextWrapped = true | |
555 | ||
556 | mustardgas.MouseButton1Down:connect(function() | |
557 | loadstring(game:GetObjects("rbxassetid://01268244120")[1].Source)() | |
558 | end) | |
559 | ||
560 | greenfire.Name = "green fire" | |
561 | greenfire.Parent = ScriptesFrame | |
562 | greenfire.BackgroundColor3 = Color3.new(0, 1, 1) | |
563 | greenfire.Position = UDim2.new(0, 224, 0, 294) | |
564 | greenfire.Size = UDim2.new(0, 200, 0, 50) | |
565 | greenfire.Font = Enum.Font.SourceSans | |
566 | greenfire.Text = "Green Fire" | |
567 | greenfire.TextColor3 = Color3.new(0, 0, 0) | |
568 | greenfire.TextScaled = true | |
569 | greenfire.TextSize = 14 | |
570 | greenfire.TextWrapped = true | |
571 | ||
572 | greenfire.MouseButton1Down:connect(function() | |
573 | loadstring(game:GetObjects("rbxassetid://01268249941")[1].Source)() | |
574 | end) | |
575 | ||
576 | monkey.Name = "monkey" | |
577 | monkey.Parent = ScriptesFrame | |
578 | monkey.BackgroundColor3 = Color3.new(0, 1, 1) | |
579 | monkey.Position = UDim2.new(0, 224, 0, 355) | |
580 | monkey.Size = UDim2.new(0, 200, 0, 50) | |
581 | monkey.Font = Enum.Font.SourceSans | |
582 | monkey.Text = "Monkey" | |
583 | monkey.TextColor3 = Color3.new(0, 0, 0) | |
584 | monkey.TextScaled = true | |
585 | monkey.TextSize = 14 | |
586 | monkey.TextWrapped = true | |
587 | ||
588 | monkey.MouseButton1Down:connect(function() | |
589 | loadstring(game:GetObjects("rbxassetid://01268254522")[1].Source)() | |
590 | end) | |
591 | ||
592 | roexploit.Name = "ro exploit" | |
593 | roexploit.Parent = ScriptesFrame | |
594 | roexploit.BackgroundColor3 = Color3.new(0, 1, 1) | |
595 | roexploit.Position = UDim2.new(0, 438, 0, 87) | |
596 | roexploit.Size = UDim2.new(0, 172, 0, 50) | |
597 | roexploit.Font = Enum.Font.SourceSans | |
598 | roexploit.Text = "Ro-Exploit 6.0" | |
599 | roexploit.TextColor3 = Color3.new(0, 0, 0) | |
600 | roexploit.TextScaled = true | |
601 | roexploit.TextSize = 14 | |
602 | roexploit.TextWrapped = true | |
603 | ||
604 | roexploit.MouseButton1Down:connect(function() | |
605 | loadstring(game:GetObjects("rbxassetid://364364477")[1].Source)() | |
606 | end) | |
607 | ||
608 | moonman.Name = "moon man" | |
609 | moonman.Parent = ScriptesFrame | |
610 | moonman.BackgroundColor3 = Color3.new(0, 1, 1) | |
611 | moonman.Position = UDim2.new(0, 438, 0, 153) | |
612 | moonman.Size = UDim2.new(0, 172, 0, 50) | |
613 | moonman.Font = Enum.Font.SourceSans | |
614 | moonman.Text = "Moon Man" | |
615 | moonman.TextColor3 = Color3.new(0, 0, 0) | |
616 | moonman.TextScaled = true | |
617 | moonman.TextSize = 14 | |
618 | moonman.TextWrapped = true | |
619 | ||
620 | moonman.MouseButton1Down:connect(function() | |
621 | loadstring(game:GetObjects("rbxassetid://01268264879")[1].Source)() | |
622 | end) | |
623 | ||
624 | bombvest.Name = "bomb vest" | |
625 | bombvest.Parent = ScriptesFrame | |
626 | bombvest.BackgroundColor3 = Color3.new(0, 1, 1) | |
627 | bombvest.Position = UDim2.new(0, 438, 0, 226) | |
628 | bombvest.Size = UDim2.new(0, 172, 0, 50) | |
629 | bombvest.Font = Enum.Font.SourceSans | |
630 | bombvest.Text = "Bomb vest" | |
631 | bombvest.TextColor3 = Color3.new(0, 0, 0) | |
632 | bombvest.TextScaled = true | |
633 | bombvest.TextSize = 14 | |
634 | bombvest.TextWrapped = true | |
635 | ||
636 | bombvest.MouseButton1Down:connect(function() | |
637 | loadstring(game:GetObjects("rbxassetid://01268270654")[1].Source)() | |
638 | end) | |
639 | ||
640 | esp.Name = "esp" | |
641 | esp.Parent = ScriptesFrame | |
642 | esp.BackgroundColor3 = Color3.new(0, 1, 1) | |
643 | esp.Position = UDim2.new(0, 438, 0, 296) | |
644 | esp.Size = UDim2.new(0, 172, 0, 50) | |
645 | esp.Font = Enum.Font.SourceSans | |
646 | esp.Text = "Esp" | |
647 | esp.TextColor3 = Color3.new(0, 0, 0) | |
648 | esp.TextScaled = true | |
649 | esp.TextSize = 14 | |
650 | esp.TextWrapped = true | |
651 | ||
652 | esp.MouseButton1Down:connect(function() | |
653 | loadstring(game:GetObjects("rbxassetid://01268274886")[1].Source)() | |
654 | end) | |
655 | ||
656 | duck.Name = "duck" | |
657 | duck.Parent = ScriptesFrame | |
658 | duck.BackgroundColor3 = Color3.new(0, 1, 1) | |
659 | duck.Position = UDim2.new(0, 438, 0, 355) | |
660 | duck.Size = UDim2.new(0, 172, 0, 50) | |
661 | duck.Font = Enum.Font.SourceSans | |
662 | duck.Text = "Duck" | |
663 | duck.TextColor3 = Color3.new(0, 0, 0) | |
664 | duck.TextScaled = true | |
665 | duck.TextSize = 14 | |
666 | duck.TextWrapped = true | |
667 | ||
668 | duck.MouseButton1Down:connect(function() | |
669 | loadstring(game:GetObjects("rbxassetid://01268278275")[1].Source)() | |
670 | end) | |
671 | ||
672 | FEScriptsFrame.Name = "FEScriptsFrame" | |
673 | FEScriptsFrame.Parent = ScreenGui | |
674 | FEScriptsFrame.Active = true | |
675 | FEScriptsFrame.BackgroundColor3 = Color3.new(0, 1, 1) | |
676 | FEScriptsFrame.Draggable = true | |
677 | FEScriptsFrame.Position = UDim2.new(0, 381, 0, 128) | |
678 | FEScriptsFrame.Size = UDim2.new(0, 606, 0, 407) | |
679 | FEScriptsFrame.Visible = false | |
680 | ||
681 | title_4.Name = "title" | |
682 | title_4.Parent = FEScriptsFrame | |
683 | title_4.BackgroundColor3 = Color3.new(0, 1, 1) | |
684 | title_4.Size = UDim2.new(0, 606, 0, 50) | |
685 | title_4.Font = Enum.Font.SourceSans | |
686 | title_4.Text = "FE Scripts" | |
687 | title_4.TextColor3 = Color3.new(0, 0, 0) | |
688 | title_4.TextScaled = true | |
689 | title_4.TextSize = 14 | |
690 | title_4.TextWrapped = true | |
691 | ||
692 | FEGod.Name = "FE God" | |
693 | FEGod.Parent = FEScriptsFrame | |
694 | FEGod.BackgroundColor3 = Color3.new(0, 1, 1) | |
695 | FEGod.Position = UDim2.new(0, 0, 0, 82) | |
696 | FEGod.Size = UDim2.new(0, 200, 0, 50) | |
697 | FEGod.Font = Enum.Font.SourceSans | |
698 | FEGod.Text = "FE God" | |
699 | FEGod.TextColor3 = Color3.new(0, 0, 0) | |
700 | FEGod.TextScaled = true | |
701 | FEGod.TextSize = 14 | |
702 | FEGod.TextWrapped = true | |
703 | ||
704 | FEGod.MouseButton1Down:connect(function() | |
705 | loadstring(game:GetObjects("rbxassetid://01268488205")[1].Source)() | |
706 | end) | |
707 | ||
708 | FEFly.Name = "FE Fly" | |
709 | FEFly.Parent = FEScriptsFrame | |
710 | FEFly.BackgroundColor3 = Color3.new(0, 1, 1) | |
711 | FEFly.Position = UDim2.new(0, 0, 0, 154) | |
712 | FEFly.Size = UDim2.new(0, 200, 0, 50) | |
713 | FEFly.Font = Enum.Font.SourceSans | |
714 | FEFly.Text = "FE Fly" | |
715 | FEFly.TextColor3 = Color3.new(0, 0, 0) | |
716 | FEFly.TextScaled = true | |
717 | FEFly.TextSize = 14 | |
718 | FEFly.TextWrapped = true | |
719 | ||
720 | FEFly.MouseButton1Down:connect(function() | |
721 | loadstring(game:GetObjects("rbxassetid://01268524787")[1].Source)() | |
722 | end) | |
723 | ||
724 | FEGui.Name = "FE Gui" | |
725 | FEGui.Parent = FEScriptsFrame | |
726 | FEGui.BackgroundColor3 = Color3.new(0, 1, 1) | |
727 | FEGui.Position = UDim2.new(0, 0, 0, 225) | |
728 | FEGui.Size = UDim2.new(0, 200, 0, 50) | |
729 | FEGui.Font = Enum.Font.SourceSans | |
730 | FEGui.Text = "FE Gui" | |
731 | FEGui.TextColor3 = Color3.new(0, 0, 0) | |
732 | FEGui.TextScaled = true | |
733 | FEGui.TextSize = 14 | |
734 | FEGui.TextWrapped = true | |
735 | ||
736 | FEGui.MouseButton1Down:connect(function() | |
737 | loadstring(game:GetObjects("rbxassetid://01268584498")[1].Source)() | |
738 | end) | |
739 | ||
740 | Exit2.Name = "Exit2" | |
741 | Exit2.Parent = FEScriptsFrame | |
742 | Exit2.BackgroundColor3 = Color3.new(0, 1, 1) | |
743 | Exit2.Position = UDim2.new(0, 445, 0, 0) | |
744 | Exit2.Size = UDim2.new(0, 161, 0, 50) | |
745 | Exit2.Font = Enum.Font.SourceSans | |
746 | Exit2.Text = "Exit" | |
747 | Exit2.TextScaled = true | |
748 | Exit2.TextSize = 14 | |
749 | Exit2.TextWrapped = true | |
750 | ||
751 | Exit2.MouseButton1Down:connect(function() | |
752 | FEScriptsFrame.Visible = false | |
753 | end) |