· 6 years ago · Apr 25, 2019, 01:16 AM
1-- succ
2local ScreenGui = Instance.new("ScreenGui")
3local ScriptGui = Instance.new("Frame")
4local bordertop = Instance.new("TextLabel")
5local borderbottom = Instance.new("TextLabel")
6local SCRIPTS = Instance.new("TextButton")
7local GUIS = Instance.new("TextButton")
8local noclip = Instance.new("TextButton")
9local fly = Instance.new("TextButton")
10local respawn = Instance.new("TextButton")
11local close = Instance.new("TextButton")
12local SPAZ = Instance.new("TextButton")
13local ToolSTEALER = Instance.new("TextButton")
14local blocks = Instance.new("TextButton")
15local _1337 = Instance.new("ImageLabel")
16local open = Instance.new("Frame")
17local openbutton = Instance.new("TextButton")
18local Tab2 = Instance.new("Frame")
19local backtoscripts = Instance.new("TextButton")
20local lt2 = Instance.new("TextButton")
21local flinggui = Instance.new("TextButton")
22local bees = Instance.new("TextButton")
23local murder2 = Instance.new("TextButton")
24--Properties:
25ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
26Tab2.Active = true
27open.Active = true
28ScriptGui.Active = true
29Tab2.Draggable = true
30ScriptGui.Draggable = true
31
32ScriptGui.Name = "ScriptGui"
33ScriptGui.Parent = ScreenGui
34ScriptGui.BackgroundColor3 = Color3.new(0.682353, 1, 0.380392)
35ScriptGui.BorderColor3 = Color3.new(0, 0, 0)
36ScriptGui.BorderSizePixel = 4
37ScriptGui.Position = UDim2.new(0.810173035, 0, 0.363636345, 0)
38ScriptGui.Size = UDim2.new(0, 339, 0, 384)
39ScriptGui.Visible = false
40
41bordertop.Name = "bordertop"
42bordertop.Parent = ScriptGui
43bordertop.BackgroundColor3 = Color3.new(0, 0, 0)
44bordertop.Size = UDim2.new(0, 339, 0, 25)
45bordertop.Font = Enum.Font.Fantasy
46bordertop.Text = "lego hax for u"
47bordertop.TextColor3 = Color3.new(1, 1, 1)
48bordertop.TextSize = 16
49
50borderbottom.Name = "borderbottom"
51borderbottom.Parent = ScriptGui
52borderbottom.BackgroundColor3 = Color3.new(0, 0, 0)
53borderbottom.Position = UDim2.new(0, 0, 0.958333313, 0)
54borderbottom.Size = UDim2.new(0, 339, 0, 16)
55borderbottom.Font = Enum.Font.SourceSans
56borderbottom.TextColor3 = Color3.new(0, 0, 0)
57borderbottom.TextSize = 14
58
59SCRIPTS.Name = "SCRIPTS"
60SCRIPTS.Parent = ScriptGui
61SCRIPTS.BackgroundColor3 = Color3.new(0.878431, 1, 0.811765)
62SCRIPTS.Position = UDim2.new(0, 0, 0.0651041642, 0)
63SCRIPTS.Size = UDim2.new(0, 167, 0, 39)
64SCRIPTS.Font = Enum.Font.SourceSans
65SCRIPTS.Text = "Scripts"
66SCRIPTS.TextColor3 = Color3.new(0, 0, 0)
67SCRIPTS.TextSize = 25
68
69GUIS.Name = "GUIS"
70GUIS.Parent = ScriptGui
71GUIS.BackgroundColor3 = Color3.new(0.878431, 1, 0.811765)
72GUIS.Position = UDim2.new(0.492625356, 0, 0.0651041642, 0)
73GUIS.Size = UDim2.new(0, 172, 0, 39)
74GUIS.Font = Enum.Font.SourceSans
75GUIS.Text = "GUIs"
76GUIS.TextColor3 = Color3.new(0, 0, 0)
77GUIS.TextSize = 25
78GUIS.MouseButton1Click:connect(function()
79 ScriptGui.Visible = false
80 Tab2.Visible = true
81end)
82
83noclip.Name = "noclip"
84noclip.Parent = ScriptGui
85noclip.BackgroundColor3 = Color3.new(1, 1, 1)
86noclip.BorderSizePixel = 4
87noclip.Position = UDim2.new(0.0324483775, 0, 0.190104172, 0)
88noclip.Size = UDim2.new(0, 148, 0, 50)
89noclip.Font = Enum.Font.SourceSans
90noclip.Text = "[Q} Noclip"
91noclip.TextColor3 = Color3.new(0, 0, 0)
92noclip.TextSize = 20
93noclip.MouseButton1Click:connect(function()
94 noclip = false
95game:GetService('RunService').Stepped:connect(function()
96if noclip then
97game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
98end
99end)
100plr = game.Players.LocalPlayer
101mouse = plr:GetMouse()
102mouse.KeyDown:connect(function(key)
103
104if key == "q" then
105noclip = not noclip
106game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
107end
108end)
109print('Loaded')
110print('Press "Q" to noclip')
111end)
112
113fly.Name = "fly"
114fly.Parent = ScriptGui
115fly.BackgroundColor3 = Color3.new(1, 1, 1)
116fly.BorderSizePixel = 4
117fly.Position = UDim2.new(0.528023601, 0, 0.190104172, 0)
118fly.Size = UDim2.new(0, 148, 0, 50)
119fly.Font = Enum.Font.SourceSans
120fly.Text = "[E] Fly"
121fly.TextColor3 = Color3.new(0, 0, 0)
122fly.TextSize = 20
123fly.MouseButton1Click:connect(function()
124 repeat wait()
125 until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
126local mouse = game.Players.LocalPlayer:GetMouse()
127repeat wait() until mouse
128local plr = game.Players.LocalPlayer
129local torso = plr.Character.Torso
130local flying = true
131local deb = true
132local ctrl = {f = 0, b = 0, l = 0, r = 0}
133local lastctrl = {f = 0, b = 0, l = 0, r = 0}
134local maxspeed = 50
135local speed = 0
136
137function Fly()
138local bg = Instance.new("BodyGyro", torso)
139bg.P = 9e4
140bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
141bg.cframe = torso.CFrame
142local bv = Instance.new("BodyVelocity", torso)
143bv.velocity = Vector3.new(0,0.1,0)
144bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
145repeat wait()
146plr.Character.Humanoid.PlatformStand = true
147if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
148speed = speed+.5+(speed/maxspeed)
149if speed > maxspeed then
150speed = maxspeed
151end
152elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
153speed = speed-1
154if speed < 0 then
155speed = 0
156end
157end
158if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
159bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
160lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
161elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
162bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
163else
164bv.velocity = Vector3.new(0,0.1,0)
165end
166bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
167until not flying
168ctrl = {f = 0, b = 0, l = 0, r = 0}
169lastctrl = {f = 0, b = 0, l = 0, r = 0}
170speed = 0
171bg:Destroy()
172bv:Destroy()
173plr.Character.Humanoid.PlatformStand = false
174end
175mouse.KeyDown:connect(function(key)
176if key:lower() == "e" then
177if flying then flying = false
178else
179flying = true
180Fly()
181end
182elseif key:lower() == "w" then
183ctrl.f = 1
184elseif key:lower() == "s" then
185ctrl.b = -1
186elseif key:lower() == "a" then
187ctrl.l = -1
188elseif key:lower() == "d" then
189ctrl.r = 1
190end
191end)
192mouse.KeyUp:connect(function(key)
193if key:lower() == "w" then
194ctrl.f = 0
195elseif key:lower() == "s" then
196ctrl.b = 0
197elseif key:lower() == "a" then
198ctrl.l = 0
199elseif key:lower() == "d" then
200ctrl.r = 0
201end
202end)
203Fly()
204end)
205
206respawn.Name = "respawn"
207respawn.Parent = ScriptGui
208respawn.BackgroundColor3 = Color3.new(1, 1, 1)
209respawn.BorderSizePixel = 4
210respawn.Position = UDim2.new(0.0324483775, 0, 0.3828125, 0)
211respawn.Size = UDim2.new(0, 148, 0, 50)
212respawn.Font = Enum.Font.SourceSans
213respawn.Text = "Respawn"
214respawn.TextColor3 = Color3.new(0, 0, 0)
215respawn.TextSize = 20
216respawn.TextWrapped = true
217respawn.MouseButton1Click:connect(function()
218 game.Players.LocalPlayer.Character["Head"]:Destroy()
219end)
220
221close.Name = "close"
222close.Parent = ScriptGui
223close.BackgroundColor3 = Color3.new(0, 0, 0)
224close.BorderSizePixel = 0
225close.Position = UDim2.new(0.932153404, 0, 0, 0)
226close.Size = UDim2.new(0, 23, 0, 25)
227close.Font = Enum.Font.Cartoon
228close.Text = "X"
229close.TextColor3 = Color3.new(1, 1, 1)
230close.TextSize = 20
231close.TextWrapped = true
232close.MouseButton1Click:connect(function()
233 ScriptGui.Visible = false
234 open.Visible = true
235end)
236
237SPAZ.Name = "SPAZ"
238SPAZ.Parent = ScriptGui
239SPAZ.BackgroundColor3 = Color3.new(1, 1, 1)
240SPAZ.BorderSizePixel = 4
241SPAZ.Position = UDim2.new(0.528023601, 0, 0.3828125, 0)
242SPAZ.Size = UDim2.new(0, 148, 0, 50)
243SPAZ.Font = Enum.Font.SourceSans
244SPAZ.Text = "Insane Animation"
245SPAZ.TextColor3 = Color3.new(0, 0, 0)
246SPAZ.TextSize = 20
247SPAZ.TextWrapped = true
248SPAZ.MouseButton1Click:connect(function()
249 while wait(1) do
250for i,v in pairs(game:GetService('Players'):GetChildren()) do
251 Player = v.Name
252 AnimationId = "33796059"
253 local Anim = Instance.new("Animation")
254 Anim.AnimationId = "rbxassetid://"..AnimationId
255 local k = game.Players.localPlayer.Character.Humanoid:LoadAnimation(Anim)
256 k:Play() --Play the animation
257 k:AdjustSpeed(99)
258end
259end
260end)
261
262ToolSTEALER.Name = "ToolSTEALER"
263ToolSTEALER.Parent = ScriptGui
264ToolSTEALER.BackgroundColor3 = Color3.new(1, 1, 1)
265ToolSTEALER.BorderSizePixel = 4
266ToolSTEALER.Position = UDim2.new(0.0265486836, 0, 0.5703125, 0)
267ToolSTEALER.Size = UDim2.new(0, 148, 0, 50)
268ToolSTEALER.Font = Enum.Font.SourceSans
269ToolSTEALER.Text = "Tool Stealer"
270ToolSTEALER.TextColor3 = Color3.new(0, 0, 0)
271ToolSTEALER.TextSize = 20
272ToolSTEALER.TextWrapped = true
273ToolSTEALER.MouseButton1Click:connect(function()
274 local Player = game:GetService("Players").LocalPlayer
275
276Player.Chatted:Connect(function(Message)
277 if Message:sub(1,5):lower() == "steal" then
278 if game:GetService("Players"):FindFirstChild(Message:sub(7)) then
279 if game:GetService("Players"):WaitForChild(Message:sub(7)):WaitForChild("Backpack"):FindFirstChildOfClass("Tool") then
280 for i,v in pairs(game:GetService("Players"):WaitForChild(Message:sub(7)):WaitForChild("Backpack"):GetChildren()) do
281 local Tool = v:Clone()
282 Tool.Parent = Player:WaitForChild("Backpack")
283 end
284 end
285 end
286 end
287end)
288
289end)
290
291blocks.Name = "blocks"
292blocks.Parent = ScriptGui
293blocks.BackgroundColor3 = Color3.new(1, 1, 1)
294blocks.BorderSizePixel = 4
295blocks.Position = UDim2.new(0.528023601, 0, 0.5703125, 0)
296blocks.Size = UDim2.new(0, 148, 0, 50)
297blocks.Font = Enum.Font.SourceSans
298blocks.Text = "Blocks (HATS NEEDED)"
299blocks.TextColor3 = Color3.new(0, 0, 0)
300blocks.TextSize = 20
301blocks.TextWrapped = true
302blocks.MouseButton1Click:connect(function()
303 for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
304if (v:IsA("Accessory")) then
305v.Handle.Mesh:remove()
306end
307end
308end)
309
310_1337.Name = "1337"
311_1337.Parent = ScriptGui
312_1337.BackgroundColor3 = Color3.new(0.682353, 1, 0.380392)
313_1337.BorderSizePixel = 0
314_1337.Position = UDim2.new(0.16519174, 0, 0.734375, 0)
315_1337.Size = UDim2.new(0, 226, 0, 79)
316_1337.Image = "rbxassetid://140366237"
317_1337.ImageColor3 = Color3.new(0.682353, 1, 0.380392)
318
319open.Name = "open"
320open.Parent = ScreenGui
321open.BackgroundColor3 = Color3.new(1, 1, 1)
322open.Position = UDim2.new(0.940744579, 0, 0.784820676, 0)
323open.Size = UDim2.new(0, 100, 0, 48)
324
325openbutton.Name = "openbutton"
326openbutton.Parent = open
327openbutton.BackgroundColor3 = Color3.new(1, 1, 1)
328openbutton.Position = UDim2.new(0.0799999982, 0, 0.104166664, 0)
329openbutton.Size = UDim2.new(0, 84, 0, 37)
330openbutton.Font = Enum.Font.SourceSans
331openbutton.Text = "open hax"
332openbutton.TextColor3 = Color3.new(0, 0, 0)
333openbutton.TextSize = 14
334openbutton.MouseButton1Click:connect(function()
335 open.Visible = false
336 ScriptGui.Visible = true
337end)
338
339Tab2.Name = "Tab2"
340Tab2.Parent = ScreenGui
341Tab2.BackgroundColor3 = Color3.new(1, 1, 1)
342Tab2.Position = UDim2.new(0.810173035, 0, 0.362802356, 0)
343Tab2.Size = UDim2.new(0, 340, 0, 385)
344Tab2.Visible = false
345
346backtoscripts.Name = "backtoscripts"
347backtoscripts.Parent = Tab2
348backtoscripts.BackgroundColor3 = Color3.new(1, 1, 1)
349backtoscripts.Size = UDim2.new(0, 340, 0, 87)
350backtoscripts.Font = Enum.Font.SourceSans
351backtoscripts.Text = "back to scripts"
352backtoscripts.TextColor3 = Color3.new(0, 0, 0)
353backtoscripts.TextScaled = true
354backtoscripts.TextSize = 14
355backtoscripts.TextWrapped = true
356backtoscripts.MouseButton1Click:connect(function()
357 Tab2.Visible = false
358 ScriptGui.Visible = true
359end)
360
361lt2.Name = "lt2"
362lt2.Parent = Tab2
363lt2.BackgroundColor3 = Color3.new(1, 1, 1)
364lt2.Position = UDim2.new(0.205882356, 0, 0.605194807, 0)
365lt2.Size = UDim2.new(0, 200, 0, 50)
366lt2.Font = Enum.Font.SourceSans
367lt2.Text = "lumber tycoon 2"
368lt2.TextColor3 = Color3.new(0, 0, 0)
369lt2.TextScaled = true
370lt2.TextSize = 14
371lt2.TextWrapped = true
372lt2.MouseButton1Click:connect(function()
373 loadstring(game:GetObjects("rbxassetid://1625032390")[1].Source)()
374end)
375
376flinggui.Name = "flinggui"
377flinggui.Parent = Tab2
378flinggui.BackgroundColor3 = Color3.new(1, 1, 1)
379flinggui.Position = UDim2.new(0.205882356, 0, 0.264935076, 0)
380flinggui.Size = UDim2.new(0, 200, 0, 50)
381flinggui.Font = Enum.Font.SourceSans
382flinggui.Text = "fling gui"
383flinggui.TextColor3 = Color3.new(0, 0, 0)
384flinggui.TextScaled = true
385flinggui.TextSize = 14
386flinggui.TextWrapped = true
387flinggui.MouseButton1Click:connect(function()
388 -- Made By JackMcJagger15
389local FlingKill = Instance.new("ScreenGui")
390local Main = Instance.new("Frame")
391local Label = Instance.new("Frame")
392local Shadow = Instance.new("Frame")
393local StartKill = Instance.new("TextButton")
394local StopKill = Instance.new("TextButton")
395local Instructions = Instance.new("TextLabel")
396local CurrentPower = Instance.new("TextLabel")
397local Recomendation = Instance.new("TextLabel")
398local NameOfGui = Instance.new("TextLabel")
399local Exit = Instance.new("TextButton")
400local UPArrow = Instance.new("TextButton")
401local DownArrow = Instance.new("TextButton")
402
403-- Properties
404
405FlingKill.Name = "Fling/Kill"
406FlingKill.Parent = game.CoreGui
407
408Main.Name = "Main"
409Main.Parent = FlingKill
410Main.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
411Main.BorderSizePixel = 0
412Main.Position = UDim2.new(0.702554762, 0, 0.446640313, 0)
413Main.Size = UDim2.new(0, 217, 0, 233)
414Main.Selectable = true
415Main.Active = true
416Main.Draggable = true
417
418Label.Name = "Label"
419Label.Parent = Main
420Label.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
421Label.BorderSizePixel = 0
422Label.Size = UDim2.new(0, 217, 0, 27)
423
424Shadow.Name = "Shadow"
425Shadow.Parent = Main
426Shadow.BackgroundColor3 = Color3.new(0.67451, 0.694118, 0.705882)
427Shadow.BorderSizePixel = 0
428Shadow.Position = UDim2.new(0, 0, 0.115879826, 0)
429Shadow.Size = UDim2.new(0, 217, 0, 9)
430
431StartKill.Name = "StartKill"
432StartKill.Parent = Main
433StartKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
434StartKill.BorderSizePixel = 0
435StartKill.Position = UDim2.new(0.195852548, 0, 0.227467805, 0)
436StartKill.Size = UDim2.new(0, 126, 0, 23)
437StartKill.Font = Enum.Font.Cartoon
438StartKill.Text = "FE Kill/Fling"
439StartKill.TextColor3 = Color3.new(0, 0, 0)
440StartKill.TextSize = 14
441
442StopKill.Name = "StopKill"
443StopKill.Parent = Main
444StopKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
445StopKill.BorderSizePixel = 0
446StopKill.Position = UDim2.new(0.207373276, 0, 0.38197428, 0)
447StopKill.Size = UDim2.new(0, 124, 0, 23)
448StopKill.Font = Enum.Font.Cartoon
449StopKill.Text = "Stop FE Kill/Fling"
450StopKill.TextColor3 = Color3.new(0, 0, 0)
451StopKill.TextSize = 14
452
453Instructions.Name = "Instructions"
454Instructions.Parent = Main
455Instructions.BackgroundColor3 = Color3.new(1, 1, 1)
456Instructions.BackgroundTransparency = 1
457Instructions.Position = UDim2.new(0.0391705073, 0, 0.549356222, 0)
458Instructions.Size = UDim2.new(0, 200, 0, 32)
459Instructions.Font = Enum.Font.Cartoon
460Instructions.Text = "Just touch someone to watch the fly to their death!"
461Instructions.TextColor3 = Color3.new(0, 0, 0)
462Instructions.TextSize = 14
463Instructions.TextWrapped = true
464
465CurrentPower.Name = "CurrentPower"
466CurrentPower.Parent = Main
467CurrentPower.BackgroundColor3 = Color3.new(1, 1, 1)
468CurrentPower.BackgroundTransparency = 1
469CurrentPower.Position = UDim2.new(0.276497692, 0, 0.686695278, 0)
470CurrentPower.Size = UDim2.new(0, 98, 0, 36)
471CurrentPower.Font = Enum.Font.Cartoon
472CurrentPower.Text = "Current Power = 5"
473CurrentPower.TextColor3 = Color3.new(0, 0, 0)
474CurrentPower.TextSize = 14
475
476Recomendation.Name = "Recomendation"
477Recomendation.Parent = Main
478Recomendation.BackgroundColor3 = Color3.new(1, 1, 1)
479Recomendation.BackgroundTransparency = 1
480Recomendation.Position = UDim2.new(0.0414746553, 0, 0.884120166, 0)
481Recomendation.Size = UDim2.new(0, 200, 0, 21)
482Recomendation.Font = Enum.Font.Cartoon
483Recomendation.Text = "Recommended Power is 5"
484Recomendation.TextColor3 = Color3.new(0, 0, 0)
485Recomendation.TextSize = 14
486
487NameOfGui.Name = "NameOfGui"
488NameOfGui.Parent = Main
489NameOfGui.BackgroundColor3 = Color3.new(1, 1, 1)
490NameOfGui.BackgroundTransparency = 1
491NameOfGui.Position = UDim2.new(0.0806451589, 0, 0, 0)
492NameOfGui.Size = UDim2.new(0, 154, 0, 27)
493NameOfGui.Font = Enum.Font.Cartoon
494NameOfGui.Text = "FE Kill/Fling By JackMcJagger15"
495NameOfGui.TextColor3 = Color3.new(0, 0, 0)
496NameOfGui.TextSize = 14
497
498Exit.Name = "Exit"
499Exit.Parent = Main
500Exit.BackgroundColor3 = Color3.new(1, 1, 1)
501Exit.BackgroundTransparency = 1
502Exit.Position = UDim2.new(0.907834113, 0, 0, 0)
503Exit.Size = UDim2.new(0, 20, 0, 27)
504Exit.Font = Enum.Font.Cartoon
505Exit.Text = "X"
506Exit.TextColor3 = Color3.new(0, 0, 0)
507Exit.TextSize = 14
508
509UPArrow.Name = "UPArrow"
510UPArrow.Parent = Main
511UPArrow.BackgroundColor3 = Color3.new(1, 1, 1)
512UPArrow.BackgroundTransparency = 1
513UPArrow.Position = UDim2.new(0.0783410147, 0, 0.716738224, 0)
514UPArrow.Size = UDim2.new(0, 26, 0, 23)
515UPArrow.Font = Enum.Font.Cartoon
516UPArrow.Text = "Up"
517UPArrow.TextColor3 = Color3.new(0, 0, 0)
518UPArrow.TextSize = 12
519UPArrow.TextWrapped = true
520
521DownArrow.Name = "DownArrow"
522DownArrow.Parent = Main
523DownArrow.BackgroundColor3 = Color3.new(1, 1, 1)
524DownArrow.BackgroundTransparency = 1
525DownArrow.Position = UDim2.new(0.792626739, 0, 0.714592278, 0)
526DownArrow.Size = UDim2.new(0, 26, 0, 23)
527DownArrow.Font = Enum.Font.Cartoon
528DownArrow.Text = "Down"
529DownArrow.TextColor3 = Color3.new(0, 0, 0)
530DownArrow.TextSize = 12
531DownArrow.TextWrapped = true
532
533power = 500
534active = false
535local val = Instance.new("IntValue")
536val.Name = "Number"
537val.Parent = game.Players.LocalPlayer
538val.Value = 5
539
540Exit.MouseButton1Click:connect(function()
541FlingKill.Enabled = false
542end)
543
544StartKill.MouseButton1Click:connect(function()
545game:GetService('RunService').Stepped:connect(function()
546if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
547game.Players.LocalPlayer.Character.Head.CanCollide = false
548game.Players.LocalPlayer.Character.Torso.CanCollide = false
549game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
550game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
551else
552if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
553game.Players.LocalPlayer.Character.Head.CanCollide = false
554game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
555game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
556game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
557end
558end
559end)
560wait(.1)
561local bambam = Instance.new("BodyThrust")
562bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
563bambam.Force = Vector3.new(power,0,power)
564bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
565end)
566
567StopKill.MouseButton1Click:connect(function()
568active = false
569game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()
570end)
571
572UPArrow.MouseButton1Click:connect(function()
573power = power + 100
574game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value + 1
575CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
576end)
577
578DownArrow.MouseButton1Click:connect(function()
579power = power - 100
580game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value - 1
581CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
582end)
583end)
584
585bees.Name = "bees"
586bees.Parent = Tab2
587bees.BackgroundColor3 = Color3.new(1, 1, 1)
588bees.Position = UDim2.new(0.205882356, 0, 0.433766246, 0)
589bees.Size = UDim2.new(0, 200, 0, 50)
590bees.Font = Enum.Font.SourceSans
591bees.Text = "bee swarm"
592bees.TextColor3 = Color3.new(0, 0, 0)
593bees.TextScaled = true
594bees.TextSize = 14
595bees.TextWrapped = true
596bees.MouseButton1Click:connect(function()
597 loadstring(game:HttpGet('https://pastebin.com/raw/8Kmpe1xr', true))()
598end)
599
600murder2.Name = "murder2"
601murder2.Parent = Tab2
602murder2.BackgroundColor3 = Color3.new(1, 1, 1)
603murder2.Position = UDim2.new(0.205882356, 0, 0.774025977, 0)
604murder2.Size = UDim2.new(0, 200, 0, 50)
605murder2.Font = Enum.Font.SourceSans
606murder2.Text = "murder mystery 2"
607murder2.TextColor3 = Color3.new(0, 0, 0)
608murder2.TextScaled = true
609murder2.TextSize = 14
610murder2.TextWrapped = true
611murder2.MouseButton1Click:connect(function()
612 -- Made by abs_0 (absoabsolute0)
613-- Objects
614
615local mygui = Instance.new("ScreenGui")
616local maintab = Instance.new("Frame")
617local title = Instance.new("TextLabel")
618local bodyframe = Instance.new("Frame")
619local menuframe = Instance.new("Frame")
620local generalbuttonframe = Instance.new("Frame")
621local generalbutton = Instance.new("TextButton")
622local generalbuttonlabel = Instance.new("ImageLabel")
623local lpbuttonframe = Instance.new("Frame")
624local lpbutton = Instance.new("TextButton")
625local lpbuttonlabel = Instance.new("ImageLabel")
626local tpbuttonframe = Instance.new("Frame")
627local tpbutton = Instance.new("TextButton")
628local tpbuttonlabel = Instance.new("ImageLabel")
629local tptextbox = Instance.new("TextBox")
630local tpunderline = Instance.new("Frame")
631local tpunderlinebase = Instance.new("Frame")
632local generalframe = Instance.new("Frame")
633local generalespframe = Instance.new("Frame")
634local generalespbutton = Instance.new("TextButton")
635local generalesplabel = Instance.new("ImageLabel")
636local generalcoinframe = Instance.new("Frame")
637local generalcoinbutton = Instance.new("TextButton")
638local generalcoinlabel = Instance.new("ImageLabel")
639local generalgunframe = Instance.new("Frame")
640local generalgunbutton = Instance.new("TextButton")
641local generalgunlabel = Instance.new("ImageLabel")
642local generallobbyframe = Instance.new("Frame")
643local generallobbybutton = Instance.new("TextButton")
644local generallobbylabel = Instance.new("ImageLabel")
645local lpframe = Instance.new("Frame")
646local lpjumpframe = Instance.new("Frame")
647local lpjumpbutton = Instance.new("TextButton")
648local lpjumplabel = Instance.new("ImageLabel")
649local lpgravframe = Instance.new("Frame")
650local lpgravbutton = Instance.new("TextButton")
651local lpgravlabel = Instance.new("ImageLabel")
652local lpwalkframe = Instance.new("Frame")
653local lpwalkbutton = Instance.new("TextButton")
654local lpwalklabel = Instance.new("ImageLabel")
655local lpgodframe = Instance.new("Frame")
656local lpgodbutton = Instance.new("TextButton")
657local lpgodlabel = Instance.new("ImageLabel")
658local backbutton1 = Instance.new("TextButton")
659local backbutton1label = Instance.new("ImageLabel")
660local backbutton2 = Instance.new("TextButton")
661local backbutton2label = Instance.new("ImageLabel")
662local creditsbutton = Instance.new("TextButton")
663local creditsiconlabel1 = Instance.new("ImageLabel")
664local creditsiconlabel2 = Instance.new("ImageLabel")
665local toggle = Instance.new("Frame")
666local closeall = Instance.new("TextButton")
667local closeopen = Instance.new("TextButton")
668local closeopenlabel = Instance.new("ImageLabel")
669local creditstab = Instance.new("Frame")
670local creditstitle = Instance.new("TextLabel")
671local creditsframe = Instance.new("Frame")
672local creditsmenuframe = Instance.new("Frame")
673local creditsfield = Instance.new("TextLabel")
674local closecredits = Instance.new("TextButton")
675
676-- Properties
677
678mygui.Name = "mygui"
679mygui.Parent = game.CoreGui
680
681maintab.Name = "maintab"
682maintab.Parent = mygui
683maintab.Active = true
684maintab.BackgroundColor3 = Color3.new(1, 1, 1)
685maintab.BackgroundTransparency = 0.5
686maintab.BorderSizePixel = 0
687maintab.Draggable = true
688maintab.Position = UDim2.new(0, 900, 0, 330)
689maintab.Size = UDim2.new(0, 256, 0, 30)
690
691title.Name = "title"
692title.Parent = maintab
693title.BackgroundColor3 = Color3.new(0, 0.45098, 0.862745)
694title.BorderSizePixel = 0
695title.Size = UDim2.new(0, 256, 0, 30)
696title.Font = Enum.Font.SourceSansBold
697title.FontSize = Enum.FontSize.Size24
698title.Text = "MM2 Gui"
699title.TextColor3 = Color3.new(1, 1, 1)
700title.TextSize = 23
701
702bodyframe.Name = "bodyframe"
703bodyframe.Parent = maintab
704bodyframe.BackgroundColor3 = Color3.new(0, 0.615686, 1)
705bodyframe.BorderSizePixel = 0
706bodyframe.ClipsDescendants = true
707bodyframe.Position = UDim2.new(0, 0, 0, 30)
708bodyframe.Size = UDim2.new(0, 256, 0, 222)
709
710menuframe.Name = "menuframe"
711menuframe.Parent = bodyframe
712menuframe.BackgroundColor3 = Color3.new(1, 1, 1)
713menuframe.BackgroundTransparency = 1
714menuframe.BorderSizePixel = 0
715menuframe.Size = UDim2.new(0, 256, 0, 222)
716
717generalbuttonframe.Name = "generalbuttonframe"
718generalbuttonframe.Parent = menuframe
719generalbuttonframe.BackgroundColor3 = Color3.new(1, 1, 1)
720generalbuttonframe.BorderSizePixel = 0
721generalbuttonframe.Position = UDim2.new(0, 31, 0, 31)
722generalbuttonframe.Size = UDim2.new(0, 194, 0, 31)
723
724generalbutton.Name = "generalbutton"
725generalbutton.Parent = generalbuttonframe
726generalbutton.BackgroundColor3 = Color3.new(1, 1, 1)
727generalbutton.BackgroundTransparency = 1
728generalbutton.BorderSizePixel = 0
729generalbutton.ClipsDescendants = true
730generalbutton.Size = UDim2.new(0, 194, 0, 30)
731generalbutton.Font = Enum.Font.SourceSansSemibold
732generalbutton.FontSize = Enum.FontSize.Size24
733generalbutton.Text = "General"
734generalbutton.TextColor3 = Color3.new(0, 0.615686, 1)
735generalbutton.TextSize = 20
736
737generalbuttonlabel.Name = "generalbuttonlabel"
738generalbuttonlabel.Parent = generalbutton
739generalbuttonlabel.AnchorPoint = Vector2.new(0.5, 0.5)
740generalbuttonlabel.BackgroundColor3 = Color3.new(1, 1, 1)
741generalbuttonlabel.BackgroundTransparency = 1
742generalbuttonlabel.BorderSizePixel = 0
743generalbuttonlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
744generalbuttonlabel.Size = UDim2.new(0, 50, 0, 50)
745generalbuttonlabel.Visible = false
746generalbuttonlabel.Image = "rbxassetid://200182847"
747generalbuttonlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
748generalbuttonlabel.ImageTransparency = 0.80000001192093
749
750lpbuttonframe.Name = "lpbuttonframe"
751lpbuttonframe.Parent = menuframe
752lpbuttonframe.BackgroundColor3 = Color3.new(1, 1, 1)
753lpbuttonframe.BorderSizePixel = 0
754lpbuttonframe.Position = UDim2.new(0, 31, 0, 96)
755lpbuttonframe.Size = UDim2.new(0, 194, 0, 31)
756
757lpbutton.Name = "lpbutton"
758lpbutton.Parent = lpbuttonframe
759lpbutton.BackgroundColor3 = Color3.new(1, 1, 1)
760lpbutton.BackgroundTransparency = 1
761lpbutton.BorderSizePixel = 0
762lpbutton.ClipsDescendants = true
763lpbutton.Size = UDim2.new(0, 194, 0, 30)
764lpbutton.Font = Enum.Font.SourceSansSemibold
765lpbutton.FontSize = Enum.FontSize.Size24
766lpbutton.Text = "Local Player"
767lpbutton.TextColor3 = Color3.new(0, 0.615686, 1)
768lpbutton.TextSize = 19
769
770lpbuttonlabel.Name = "lpbuttonlabel"
771lpbuttonlabel.Parent = lpbutton
772lpbuttonlabel.AnchorPoint = Vector2.new(0.5, 0.5)
773lpbuttonlabel.BackgroundColor3 = Color3.new(1, 1, 1)
774lpbuttonlabel.BackgroundTransparency = 1
775lpbuttonlabel.BorderSizePixel = 0
776lpbuttonlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
777lpbuttonlabel.Size = UDim2.new(0, 50, 0, 50)
778lpbuttonlabel.Visible = false
779lpbuttonlabel.Image = "rbxassetid://200182847"
780lpbuttonlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
781lpbuttonlabel.ImageTransparency = 0.80000001192093
782
783tptextbox.Name = "tptextbox"
784tptextbox.Parent = menuframe
785tptextbox.BackgroundColor3 = Color3.new(1, 1, 1)
786tptextbox.BackgroundTransparency = 1
787tptextbox.BorderSizePixel = 0
788tptextbox.Position = UDim2.new(0, 31, 0, 165)
789tptextbox.Size = UDim2.new(0, 194, 0, 31)
790tptextbox.Font = Enum.Font.SourceSans
791tptextbox.FontSize = Enum.FontSize.Size18
792tptextbox.Text = "Player Name"
793tptextbox.TextColor3 = Color3.new(1, 1, 1)
794tptextbox.TextSize = 15
795
796tpunderline.Name = "tpunderline"
797tpunderline.Parent = tptextbox
798tpunderline.AnchorPoint = Vector2.new(0, 0)
799tpunderline.BackgroundColor3 = Color3.new(1, 1, 1)
800tpunderline.BorderSizePixel = 0
801tpunderline.Position = UDim2.new(0.496815294, 0, 0.967741966, 0)
802tpunderline.Size = UDim2.new(0, 0, 0, 2)
803
804tpunderlinebase.Name = "tpunderlinebase"
805tpunderlinebase.Parent = tptextbox
806tpunderlinebase.AnchorPoint = Vector2.new(0.5, 0.5)
807tpunderlinebase.BackgroundColor3 = Color3.new(1, 1, 1)
808tpunderlinebase.BackgroundTransparency = 0.80000001192093
809tpunderlinebase.BorderSizePixel = 0
810tpunderlinebase.Position = UDim2.new(0.496815294, 0, 0.967741966, 0)
811tpunderlinebase.Size = UDim2.new(0, 157, 0, 2)
812tpunderlinebase.Visible = false --secretkey
813
814generalframe.Name = "generalframe"
815generalframe.Parent = bodyframe
816generalframe.BackgroundColor3 = Color3.new(1, 1, 1)
817generalframe.BackgroundTransparency = 1
818generalframe.BorderSizePixel = 0
819generalframe.Position = UDim2.new(0, 256, 0, 0)
820generalframe.Size = UDim2.new(0, 256, 0, 222)
821
822generalespframe.Name = "generalespframe"
823generalespframe.Parent = generalframe
824generalespframe.BackgroundColor3 = Color3.new(1, 1, 1)
825generalespframe.BorderSizePixel = 0
826generalespframe.Position = UDim2.new(0, 31, 0, 172)
827generalespframe.Size = UDim2.new(0, 194, 0, 30)
828
829generalespbutton.Name = "generalespbutton"
830generalespbutton.Parent = generalespframe
831generalespbutton.BackgroundColor3 = Color3.new(1, 1, 1)
832generalespbutton.BackgroundTransparency = 1
833generalespbutton.BorderSizePixel = 0
834generalespbutton.ClipsDescendants = true
835generalespbutton.Size = UDim2.new(0, 194, 0, 30)
836generalespbutton.Font = Enum.Font.SourceSansSemibold
837generalespbutton.FontSize = Enum.FontSize.Size24
838generalespbutton.Text = "ESP (Left Alt)"
839generalespbutton.TextColor3 = Color3.new(0, 0.615686, 1)
840generalespbutton.TextSize = 19
841
842generalesplabel.Name = "generalesplabel"
843generalesplabel.Parent = generalespbutton
844generalesplabel.AnchorPoint = Vector2.new(0.5, 0.5)
845generalesplabel.BackgroundColor3 = Color3.new(1, 1, 1)
846generalesplabel.BackgroundTransparency = 1
847generalesplabel.BorderSizePixel = 0
848generalesplabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
849generalesplabel.Size = UDim2.new(0, 50, 0, 50)
850generalesplabel.Visible = false
851generalesplabel.Image = "rbxassetid://200182847"
852generalesplabel.ImageColor3 = Color3.new(0, 0.705882, 1)
853generalesplabel.ImageTransparency = 0.80000001192093
854
855generalcoinframe.Name = "generalcoinframe"
856generalcoinframe.Parent = generalframe
857generalcoinframe.BackgroundColor3 = Color3.new(1, 1, 1)
858generalcoinframe.BorderSizePixel = 0
859generalcoinframe.Position = UDim2.new(0, 31, 0, 120)
860generalcoinframe.Size = UDim2.new(0, 194, 0, 30)
861
862generalcoinbutton.Name = "generalcoinbutton"
863generalcoinbutton.Parent = generalcoinframe
864generalcoinbutton.BackgroundColor3 = Color3.new(1, 1, 1)
865generalcoinbutton.BackgroundTransparency = 1
866generalcoinbutton.BorderSizePixel = 0
867generalcoinbutton.ClipsDescendants = true
868generalcoinbutton.Position = UDim2.new(0, 0, 0, -1)
869generalcoinbutton.Size = UDim2.new(0, 194, 0, 31)
870generalcoinbutton.Font = Enum.Font.SourceSansSemibold
871generalcoinbutton.FontSize = Enum.FontSize.Size24
872generalcoinbutton.Text = "Grab 10 Coins"
873generalcoinbutton.TextColor3 = Color3.new(0, 0.615686, 1)
874generalcoinbutton.TextSize = 19
875
876generalcoinlabel.Name = "generalcoinlabel"
877generalcoinlabel.Parent = generalcoinbutton
878generalcoinlabel.AnchorPoint = Vector2.new(0.5, 0.5)
879generalcoinlabel.BackgroundColor3 = Color3.new(1, 1, 1)
880generalcoinlabel.BackgroundTransparency = 1
881generalcoinlabel.BorderSizePixel = 0
882generalcoinlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
883generalcoinlabel.Size = UDim2.new(0, 50, 0, 50)
884generalcoinlabel.Visible = false
885generalcoinlabel.Image = "rbxassetid://200182847"
886generalcoinlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
887generalcoinlabel.ImageTransparency = 0.80000001192093
888
889generalgunframe.Name = "generalgunframe"
890generalgunframe.Parent = generalframe
891generalgunframe.BackgroundColor3 = Color3.new(1, 1, 1)
892generalgunframe.BorderSizePixel = 0
893generalgunframe.Position = UDim2.new(0, 31, 0, 68)
894generalgunframe.Size = UDim2.new(0, 194, 0, 30)
895
896generalgunbutton.Name = "generalgunbutton"
897generalgunbutton.Parent = generalgunframe
898generalgunbutton.BackgroundColor3 = Color3.new(1, 1, 1)
899generalgunbutton.BackgroundTransparency = 1
900generalgunbutton.BorderSizePixel = 0
901generalgunbutton.ClipsDescendants = true
902generalgunbutton.Size = UDim2.new(0, 194, 0, 30)
903generalgunbutton.Font = Enum.Font.SourceSansSemibold
904generalgunbutton.FontSize = Enum.FontSize.Size24
905generalgunbutton.Text = "Grab Gun"
906generalgunbutton.TextColor3 = Color3.new(0, 0.615686, 1)
907generalgunbutton.TextSize = 19
908
909generalgunlabel.Name = "generalgunlabel"
910generalgunlabel.Parent = generalgunbutton
911generalgunlabel.AnchorPoint = Vector2.new(0.5, 0.5)
912generalgunlabel.BackgroundColor3 = Color3.new(1, 1, 1)
913generalgunlabel.BackgroundTransparency = 1
914generalgunlabel.BorderSizePixel = 0
915generalgunlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
916generalgunlabel.Size = UDim2.new(0, 50, 0, 50)
917generalgunlabel.Visible = false
918generalgunlabel.Image = "rbxassetid://200182847"
919generalgunlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
920generalgunlabel.ImageTransparency = 0.80000001192093
921
922generallobbyframe.Name = "generallobbyframe"
923generallobbyframe.Parent = generalframe
924generallobbyframe.BackgroundColor3 = Color3.new(1, 1, 1)
925generallobbyframe.BorderSizePixel = 0
926generallobbyframe.Position = UDim2.new(0, 31, 0, 17)
927generallobbyframe.Size = UDim2.new(0, 194, 0, 30)
928
929generallobbybutton.Name = "generallobbybutton"
930generallobbybutton.Parent = generallobbyframe
931generallobbybutton.BackgroundColor3 = Color3.new(1, 1, 1)
932generallobbybutton.BackgroundTransparency = 1
933generallobbybutton.BorderSizePixel = 0
934generallobbybutton.ClipsDescendants = true
935generallobbybutton.Size = UDim2.new(0, 194, 0, 30)
936generallobbybutton.Font = Enum.Font.SourceSansSemibold
937generallobbybutton.FontSize = Enum.FontSize.Size24
938generallobbybutton.Text = "TP to Lobby"
939generallobbybutton.TextColor3 = Color3.new(0, 0.615686, 1)
940generallobbybutton.TextSize = 19
941
942generallobbylabel.Name = "generallobbylabel"
943generallobbylabel.Parent = generallobbybutton
944generallobbylabel.AnchorPoint = Vector2.new(0.5, 0.5)
945generallobbylabel.BackgroundColor3 = Color3.new(1, 1, 1)
946generallobbylabel.BackgroundTransparency = 1
947generallobbylabel.BorderSizePixel = 0
948generallobbylabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
949generallobbylabel.Size = UDim2.new(0, 50, 0, 50)
950generallobbylabel.Visible = false
951generallobbylabel.Image = "rbxassetid://200182847"
952generallobbylabel.ImageColor3 = Color3.new(0, 0.705882, 1)
953generallobbylabel.ImageTransparency = 0.80000001192093
954
955lpframe.Name = "lpframe"
956lpframe.Parent = bodyframe
957lpframe.BackgroundColor3 = Color3.new(1, 1, 1)
958lpframe.BackgroundTransparency = 1
959lpframe.BorderSizePixel = 0
960lpframe.Position = UDim2.new(0, 256, 0, 0)
961lpframe.Size = UDim2.new(0, 256, 0, 222)
962
963lpjumpframe.Name = "lpjumpframe"
964lpjumpframe.Parent = lpframe
965lpjumpframe.BackgroundColor3 = Color3.new(1, 1, 1)
966lpjumpframe.BorderSizePixel = 0
967lpjumpframe.Position = UDim2.new(0, 31, 0, 172)
968lpjumpframe.Size = UDim2.new(0, 194, 0, 30)
969
970lpjumpbutton.Name = "lpjumpbutton"
971lpjumpbutton.Parent = lpjumpframe
972lpjumpbutton.BackgroundColor3 = Color3.new(1, 1, 1)
973lpjumpbutton.BackgroundTransparency = 1
974lpjumpbutton.BorderSizePixel = 0
975lpjumpbutton.ClipsDescendants = true
976lpjumpbutton.Size = UDim2.new(0, 194, 0, 30)
977lpjumpbutton.Font = Enum.Font.SourceSansSemibold
978lpjumpbutton.FontSize = Enum.FontSize.Size24
979lpjumpbutton.Text = "High Jump"
980lpjumpbutton.TextColor3 = Color3.new(0, 0.615686, 1)
981lpjumpbutton.TextSize = 19
982
983lpjumplabel.Name = "lpjumplabel"
984lpjumplabel.Parent = lpjumpbutton
985lpjumplabel.AnchorPoint = Vector2.new(0.5, 0.5)
986lpjumplabel.BackgroundColor3 = Color3.new(1, 1, 1)
987lpjumplabel.BackgroundTransparency = 1
988lpjumplabel.BorderSizePixel = 0
989lpjumplabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
990lpjumplabel.Size = UDim2.new(0, 50, 0, 50)
991lpjumplabel.Visible = false
992lpjumplabel.Image = "rbxassetid://200182847"
993lpjumplabel.ImageColor3 = Color3.new(0, 0.705882, 1)
994lpjumplabel.ImageTransparency = 0.80000001192093
995
996lpgravframe.Name = "lpgravframe"
997lpgravframe.Parent = lpframe
998lpgravframe.BackgroundColor3 = Color3.new(1, 1, 1)
999lpgravframe.BorderSizePixel = 0
1000lpgravframe.Position = UDim2.new(0, 31, 0, 120)
1001lpgravframe.Size = UDim2.new(0, 194, 0, 30)
1002
1003lpgravbutton.Name = "lpgravbutton"
1004lpgravbutton.Parent = lpgravframe
1005lpgravbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1006lpgravbutton.BackgroundTransparency = 1
1007lpgravbutton.BorderSizePixel = 0
1008lpgravbutton.ClipsDescendants = true
1009lpgravbutton.Position = UDim2.new(0, 0, 0, -1)
1010lpgravbutton.Size = UDim2.new(0, 194, 0, 31)
1011lpgravbutton.Font = Enum.Font.SourceSansSemibold
1012lpgravbutton.FontSize = Enum.FontSize.Size24
1013lpgravbutton.Text = "Low Gravity"
1014lpgravbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1015lpgravbutton.TextSize = 19
1016
1017lpgravlabel.Name = "lpgravlabel"
1018lpgravlabel.Parent = lpgravbutton
1019lpgravlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1020lpgravlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1021lpgravlabel.BackgroundTransparency = 1
1022lpgravlabel.BorderSizePixel = 0
1023lpgravlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1024lpgravlabel.Size = UDim2.new(0, 50, 0, 50)
1025lpgravlabel.Visible = false
1026lpgravlabel.Image = "rbxassetid://200182847"
1027lpgravlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1028lpgravlabel.ImageTransparency = 0.80000001192093
1029
1030lpwalkframe.Name = "lpwalkframe"
1031lpwalkframe.Parent = lpframe
1032lpwalkframe.BackgroundColor3 = Color3.new(1, 1, 1)
1033lpwalkframe.BorderSizePixel = 0
1034lpwalkframe.Position = UDim2.new(0, 31, 0, 68)
1035lpwalkframe.Size = UDim2.new(0, 194, 0, 30)
1036
1037lpwalkbutton.Name = "lpwalkbutton"
1038lpwalkbutton.Parent = lpwalkframe
1039lpwalkbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1040lpwalkbutton.BackgroundTransparency = 1
1041lpwalkbutton.BorderSizePixel = 0
1042lpwalkbutton.ClipsDescendants = true
1043lpwalkbutton.Size = UDim2.new(0, 194, 0, 30)
1044lpwalkbutton.Font = Enum.Font.SourceSansSemibold
1045lpwalkbutton.FontSize = Enum.FontSize.Size24
1046lpwalkbutton.Text = "Fast Walk"
1047lpwalkbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1048lpwalkbutton.TextSize = 19
1049
1050lpwalklabel.Name = "lpwalklabel"
1051lpwalklabel.Parent = lpwalkbutton
1052lpwalklabel.AnchorPoint = Vector2.new(0.5, 0.5)
1053lpwalklabel.BackgroundColor3 = Color3.new(1, 1, 1)
1054lpwalklabel.BackgroundTransparency = 1
1055lpwalklabel.BorderSizePixel = 0
1056lpwalklabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1057lpwalklabel.Size = UDim2.new(0, 50, 0, 50)
1058lpwalklabel.Visible = false
1059lpwalklabel.Image = "rbxassetid://200182847"
1060lpwalklabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1061lpwalklabel.ImageTransparency = 0.80000001192093
1062
1063lpgodframe.Name = "lpgodframe"
1064lpgodframe.Parent = lpframe
1065lpgodframe.BackgroundColor3 = Color3.new(1, 1, 1)
1066lpgodframe.BorderSizePixel = 0
1067lpgodframe.Position = UDim2.new(0, 31, 0, 17)
1068lpgodframe.Size = UDim2.new(0, 194, 0, 30)
1069
1070lpgodbutton.Name = "lpgodbutton"
1071lpgodbutton.Parent = lpgodframe
1072lpgodbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1073lpgodbutton.BackgroundTransparency = 1
1074lpgodbutton.BorderSizePixel = 0
1075lpgodbutton.ClipsDescendants = true
1076lpgodbutton.Size = UDim2.new(0, 194, 0, 30)
1077lpgodbutton.Font = Enum.Font.SourceSansSemibold
1078lpgodbutton.FontSize = Enum.FontSize.Size24
1079lpgodbutton.Text = "God Mode"
1080lpgodbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1081lpgodbutton.TextSize = 19
1082
1083lpgodlabel.Name = "lpgodlabel"
1084lpgodlabel.Parent = lpgodbutton
1085lpgodlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1086lpgodlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1087lpgodlabel.BackgroundTransparency = 1
1088lpgodlabel.BorderSizePixel = 0
1089lpgodlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1090lpgodlabel.Size = UDim2.new(0, 50, 0, 50)
1091lpgodlabel.Visible = false
1092lpgodlabel.Image = "rbxassetid://200182847"
1093lpgodlabel.ImageColor3 = Color3.new(0, 0.705882, 1)
1094lpgodlabel.ImageTransparency = 0.80000001192093
1095
1096backbutton1.Name = "backbutton1"
1097backbutton1.Parent = maintab
1098backbutton1.Active = false
1099backbutton1.BackgroundColor3 = Color3.new(0, 0.407843, 0.658824)
1100backbutton1.BackgroundTransparency = 1
1101backbutton1.BorderSizePixel = 0
1102backbutton1.ClipsDescendants = true
1103backbutton1.Size = UDim2.new(0, 29, 0, 30)
1104backbutton1.Visible = false
1105backbutton1.AutoButtonColor = false
1106backbutton1.Font = Enum.Font.SourceSansBold
1107backbutton1.FontSize = Enum.FontSize.Size24
1108backbutton1.Text = "<"
1109backbutton1.TextColor3 = Color3.new(1, 1, 1)
1110backbutton1.TextSize = 20
1111
1112backbutton1label.Name = "backbutton1label"
1113backbutton1label.Parent = backbutton1
1114backbutton1label.AnchorPoint = Vector2.new(0.5, 0.5)
1115backbutton1label.BackgroundColor3 = Color3.new(1, 1, 1)
1116backbutton1label.BackgroundTransparency = 1
1117backbutton1label.BorderSizePixel = 0
1118backbutton1label.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1119backbutton1label.Size = UDim2.new(0, 50, 0, 50)
1120backbutton1label.Visible = false
1121backbutton1label.Image = "rbxassetid://200182847"
1122backbutton1label.ImageTransparency = 0.80000001192093
1123
1124backbutton2.Name = "backbutton2"
1125backbutton2.Parent = maintab
1126backbutton2.Active = false
1127backbutton2.BackgroundColor3 = Color3.new(0, 0.407843, 0.658824)
1128backbutton2.BackgroundTransparency = 1
1129backbutton2.BorderSizePixel = 0
1130backbutton2.ClipsDescendants = true
1131backbutton2.Size = UDim2.new(0, 29, 0, 30)
1132backbutton2.Visible = false
1133backbutton2.AutoButtonColor = false
1134backbutton2.Font = Enum.Font.SourceSansBold
1135backbutton2.FontSize = Enum.FontSize.Size24
1136backbutton2.Text = "<"
1137backbutton2.TextColor3 = Color3.new(1, 1, 1)
1138backbutton2.TextSize = 20
1139
1140backbutton2label.Name = "backbutton2label"
1141backbutton2label.Parent = backbutton2
1142backbutton2label.AnchorPoint = Vector2.new(0.5, 0.5)
1143backbutton2label.BackgroundColor3 = Color3.new(1, 1, 1)
1144backbutton2label.BackgroundTransparency = 1
1145backbutton2label.BorderSizePixel = 0
1146backbutton2label.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1147backbutton2label.Size = UDim2.new(0, 50, 0, 50)
1148backbutton2label.Visible = false
1149backbutton2label.Image = "rbxassetid://200182847"
1150backbutton2label.ImageTransparency = 0.80000001192093
1151
1152creditsbutton.Name = "creditsbutton"
1153creditsbutton.Parent = maintab
1154creditsbutton.BackgroundColor3 = Color3.new(1, 1, 1)
1155creditsbutton.BackgroundTransparency = 1
1156creditsbutton.BorderSizePixel = 0
1157creditsbutton.ClipsDescendants = true
1158creditsbutton.Position = UDim2.new(0.87890625, 0, 0, 0)
1159creditsbutton.Size = UDim2.new(0, 31, 0, 30)
1160creditsbutton.Font = Enum.Font.SourceSansSemibold
1161creditsbutton.FontSize = Enum.FontSize.Size18
1162creditsbutton.Text = ""
1163creditsbutton.TextColor3 = Color3.new(0, 0.615686, 1)
1164creditsbutton.TextSize = 15
1165
1166creditsiconlabel1.Name = "creditsiconlabel1"
1167creditsiconlabel1.Parent = creditsbutton
1168creditsiconlabel1.AnchorPoint = Vector2.new(0.5, 0.5)
1169creditsiconlabel1.BackgroundColor3 = Color3.new(1, 1, 1)
1170creditsiconlabel1.BackgroundTransparency = 1
1171creditsiconlabel1.BorderSizePixel = 0
1172creditsiconlabel1.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1173creditsiconlabel1.Size = UDim2.new(0, 50, 0, 50)
1174creditsiconlabel1.Visible = false
1175creditsiconlabel1.Image = "rbxassetid://200182847"
1176creditsiconlabel1.ImageTransparency = 0.80000001192093
1177
1178creditsiconlabel2.Name = "creditsiconlabel2"
1179creditsiconlabel2.Parent = creditsbutton
1180creditsiconlabel2.AnchorPoint = Vector2.new(0.5, 0.5)
1181creditsiconlabel2.BackgroundColor3 = Color3.new(1, 1, 1)
1182creditsiconlabel2.BackgroundTransparency = 1
1183creditsiconlabel2.BorderSizePixel = 0
1184creditsiconlabel2.Position = UDim2.new(0.5, 0, 0.5, 0)
1185creditsiconlabel2.Size = UDim2.new(0, 17, 0, 17)
1186creditsiconlabel2.Image = "rbxassetid://23151450"
1187
1188toggle.Name = "toggle"
1189toggle.Parent = mygui
1190toggle.Active = true
1191toggle.BackgroundColor3 = Color3.new(0.992157, 0.984314, 1)
1192toggle.BackgroundTransparency = 0.5
1193toggle.BorderSizePixel = 0
1194toggle.Draggable = true
1195toggle.Position = UDim2.new(0, 5, 0, 530)
1196toggle.Size = UDim2.new(0, 140, 0, 30)
1197
1198closeall.Name = "closeall"
1199closeall.Parent = toggle
1200closeall.BackgroundColor3 = Color3.new(1, 0, 0)
1201closeall.BorderSizePixel = 0
1202closeall.Position = UDim2.new(0, 110, 0, 0)
1203closeall.Size = UDim2.new(0, 30, 0, 30)
1204closeall.FontSize = Enum.FontSize.Size18
1205closeall.Text = ""
1206closeall.TextSize = 15
1207
1208closeopen.Name = "closeopen"
1209closeopen.Parent = toggle
1210closeopen.BackgroundColor3 = Color3.new(0, 0.615686, 1)
1211closeopen.BorderSizePixel = 0
1212closeopen.ClipsDescendants = true
1213closeopen.Size = UDim2.new(0, 110, 0, 30)
1214closeopen.AutoButtonColor = false
1215closeopen.Font = Enum.Font.SourceSansBold
1216closeopen.FontSize = Enum.FontSize.Size24
1217closeopen.Text = "Close"
1218closeopen.TextColor3 = Color3.new(1, 1, 1)
1219closeopen.TextSize = 20
1220
1221closeopenlabel.Name = "closeopenlabel"
1222closeopenlabel.Parent = closeopen
1223closeopenlabel.AnchorPoint = Vector2.new(0.5, 0.5)
1224closeopenlabel.BackgroundColor3 = Color3.new(1, 1, 1)
1225closeopenlabel.BackgroundTransparency = 1
1226closeopenlabel.BorderSizePixel = 0
1227closeopenlabel.Position = UDim2.new(0.840206146, 0, 0.500000477, 0)
1228closeopenlabel.Size = UDim2.new(0, 50, 0, 50)
1229closeopenlabel.Visible = false
1230closeopenlabel.Image = "rbxassetid://200182847"
1231closeopenlabel.ImageTransparency = 0.80000001192093
1232
1233creditstab.Name = "creditstab"
1234creditstab.Parent = mygui
1235creditstab.Active = true
1236creditstab.BackgroundColor3 = Color3.new(1, 1, 1)
1237creditstab.BackgroundTransparency = 0.5
1238creditstab.BorderSizePixel = 0
1239creditstab.Draggable = true
1240creditstab.Position = UDim2.new(0, 42, 0, 47)
1241creditstab.Size = UDim2.new(0, 256, 0, 30)
1242creditstab.Visible = false
1243
1244creditstitle.Name = "creditstitle"
1245creditstitle.Parent = creditstab
1246creditstitle.BackgroundColor3 = Color3.new(0, 0.45098, 0.862745)
1247creditstitle.BorderSizePixel = 0
1248creditstitle.Position = UDim2.new(-0.001953125, 0, 0, 0)
1249creditstitle.Size = UDim2.new(0, 256, 0, 30)
1250creditstitle.Font = Enum.Font.SourceSansBold
1251creditstitle.FontSize = Enum.FontSize.Size24
1252creditstitle.Text = "Credits"
1253creditstitle.TextColor3 = Color3.new(1, 1, 1)
1254creditstitle.TextSize = 23
1255
1256creditsframe.Name = "creditsframe"
1257creditsframe.Parent = creditstab
1258creditsframe.BackgroundColor3 = Color3.new(0, 0.615686, 1)
1259creditsframe.BorderSizePixel = 0
1260creditsframe.ClipsDescendants = true
1261creditsframe.Position = UDim2.new(0, 0, 0, 30)
1262creditsframe.Size = UDim2.new(0, 256, 0, 222)
1263
1264creditsmenuframe.Name = "menuframe"
1265creditsmenuframe.Parent = creditsframe
1266creditsmenuframe.BackgroundColor3 = Color3.new(1, 1, 1)
1267creditsmenuframe.BackgroundTransparency = 1
1268creditsmenuframe.BorderSizePixel = 0
1269creditsmenuframe.Size = UDim2.new(0, 256, 0, 222)
1270
1271creditsfield.Name = "creditsfield"
1272creditsfield.Parent = creditsmenuframe
1273creditsfield.BackgroundColor3 = Color3.new(1, 1, 1)
1274creditsfield.BorderSizePixel = 0
1275creditsfield.Position = UDim2.new(0, 31, 0, 31)
1276creditsfield.Size = UDim2.new(0, 194, 0, 31)
1277creditsfield.Font = Enum.Font.SourceSansSemibold
1278creditsfield.FontSize = Enum.FontSize.Size24
1279creditsfield.Text = "By: abs_0"
1280creditsfield.TextColor3 = Color3.new(0, 0.615686, 1)
1281creditsfield.TextSize = 20
1282
1283closecredits.Name = "closeall"
1284closecredits.Parent = creditstab
1285closecredits.BackgroundColor3 = Color3.new(1, 0, 0)
1286closecredits.BorderSizePixel = 0
1287closecredits.Position = UDim2.new(0, 226, 0, 0)
1288closecredits.Size = UDim2.new(0, 30, 0, 30)
1289closecredits.FontSize = Enum.FontSize.Size18
1290closecredits.Text = ""
1291closecredits.TextSize = 15
1292
1293--Appearance Scripts
1294
1295--mygui.maintab.bodyframe.generalframe.generallobbyframe.generallobbybutton.Script
1296local mouse = game.Players.LocalPlayer:GetMouse()
1297
1298
1299generallobbybutton.MouseButton1Down:connect(function()
1300 local x = (mouse.X) - (generallobbybutton.AbsolutePosition.X)
1301 local y = (mouse.Y) - (generallobbybutton.AbsolutePosition.Y)
1302 generallobbylabel.Position = UDim2.new(0,x,0,y)
1303 generallobbylabel.Size = UDim2.new(0,50,0,50)
1304 generallobbylabel.ImageTransparency = 0.8
1305 generallobbylabel.Visible = true
1306
1307 wait()
1308
1309 generallobbylabel:TweenSize(
1310 UDim2.new(0,390,0,390),
1311 "Out",
1312 "Quint",
1313 1
1314 )
1315end)
1316
1317generallobbybutton.MouseButton1Up:connect(function()
1318 wait(0.35)
1319 local TweenService = game:GetService("TweenService")
1320 local circle = generallobbylabel
1321
1322 local Info = TweenInfo.new(
1323 0.2, -- Length
1324 Enum.EasingStyle.Linear, -- Easing Style
1325 Enum.EasingDirection.Out, -- Easing Direction
1326 0, -- Times repeated
1327 false, -- Reverse
1328 0 -- Delay
1329 )
1330 local Goals =
1331 {
1332 ImageTransparency = 1;
1333 }
1334
1335 local tween = TweenService:Create(circle,Info,Goals)
1336 tween:Play()
1337end)
1338
1339--mygui.maintab.bodyframe.generalframe.generalgunframe.generalgunbutton.Script
1340local mouse = game.Players.LocalPlayer:GetMouse()
1341
1342
1343generalgunbutton.MouseButton1Down:connect(function()
1344 local x = (mouse.X) - (generalgunbutton.AbsolutePosition.X)
1345 local y = (mouse.Y) - (generalgunbutton.AbsolutePosition.Y)
1346 generalgunlabel.Position = UDim2.new(0,x,0,y)
1347 generalgunlabel.Size = UDim2.new(0,50,0,50)
1348 generalgunlabel.ImageTransparency = 0.8
1349 generalgunlabel.Visible = true
1350
1351 wait()
1352
1353 generalgunlabel:TweenSize(
1354 UDim2.new(0,390,0,390),
1355 "Out",
1356 "Quint",
1357 1
1358 )
1359end)
1360
1361generalgunbutton.MouseButton1Up:connect(function()
1362 wait(0.35)
1363 local TweenService = game:GetService("TweenService")
1364 local circle = generalgunlabel
1365
1366 local Info = TweenInfo.new(
1367 0.2, -- Length
1368 Enum.EasingStyle.Linear, -- Easing Style
1369 Enum.EasingDirection.Out, -- Easing Direction
1370 0, -- Times repeated
1371 false, -- Reverse
1372 0 -- Delay
1373 )
1374 local Goals =
1375 {
1376 ImageTransparency = 1;
1377 }
1378
1379 local tween = TweenService:Create(circle,Info,Goals)
1380 tween:Play()
1381end)
1382
1383--mygui.maintab.bodyframe.generalframe.generalcoinframe.generalcoinbutton.Script
1384local mouse = game.Players.LocalPlayer:GetMouse()
1385
1386
1387generalcoinbutton.MouseButton1Down:connect(function()
1388 local x = (mouse.X) - (generalcoinbutton.AbsolutePosition.X)
1389 local y = (mouse.Y) - (generalcoinbutton.AbsolutePosition.Y)
1390 generalcoinlabel.Position = UDim2.new(0,x,0,y)
1391 generalcoinlabel.Size = UDim2.new(0,50,0,50)
1392 generalcoinlabel.ImageTransparency = 0.8
1393 generalcoinlabel.Visible = true
1394
1395 wait()
1396
1397 generalcoinlabel:TweenSize(
1398 UDim2.new(0,390,0,390),
1399 "Out",
1400 "Quint",
1401 1
1402 )
1403end)
1404
1405generalcoinbutton.MouseButton1Up:connect(function()
1406 wait(0.35)
1407 local TweenService = game:GetService("TweenService")
1408 local circle = generalcoinlabel
1409
1410 local Info = TweenInfo.new(
1411 0.2, -- Length
1412 Enum.EasingStyle.Linear, -- Easing Style
1413 Enum.EasingDirection.Out, -- Easing Direction
1414 0, -- Times repeated
1415 false, -- Reverse
1416 0 -- Delay
1417 )
1418 local Goals =
1419 {
1420 ImageTransparency = 1;
1421 }
1422
1423 local tween = TweenService:Create(circle,Info,Goals)
1424 tween:Play()
1425end)
1426
1427--mygui.maintab.bodyframe.generalframe.generalespframe.generalespbutton.Script
1428local mouse = game.Players.LocalPlayer:GetMouse()
1429
1430
1431generalespbutton.MouseButton1Down:connect(function()
1432 local x = (mouse.X) - (generalespbutton.AbsolutePosition.X)
1433 local y = (mouse.Y) - (generalespbutton.AbsolutePosition.Y)
1434 generalesplabel.Position = UDim2.new(0,x,0,y)
1435 generalesplabel.Size = UDim2.new(0,50,0,50)
1436 generalesplabel.ImageTransparency = 0.8
1437 generalesplabel.Visible = true
1438
1439 wait()
1440
1441 generalesplabel:TweenSize(
1442 UDim2.new(0,390,0,390),
1443 "Out",
1444 "Quint",
1445 1
1446 )
1447end)
1448
1449generalespbutton.MouseButton1Up:connect(function()
1450 wait(0.35)
1451 local TweenService = game:GetService("TweenService")
1452 local circle = generalesplabel
1453
1454 local Info = TweenInfo.new(
1455 0.2, -- Length
1456 Enum.EasingStyle.Linear, -- Easing Style
1457 Enum.EasingDirection.Out, -- Easing Direction
1458 0, -- Times repeated
1459 false, -- Reverse
1460 0 -- Delay
1461 )
1462 local Goals =
1463 {
1464 ImageTransparency = 1;
1465 }
1466
1467 local tween = TweenService:Create(circle,Info,Goals)
1468 tween:Play()
1469end)
1470
1471--mygui.maintab.bodyframe.lpframe.lpgodframe.lpgodbutton.Script
1472local mouse = game.Players.LocalPlayer:GetMouse()
1473
1474
1475lpgodbutton.MouseButton1Down:connect(function()
1476 local x = (mouse.X) - (lpgodbutton.AbsolutePosition.X)
1477 local y = (mouse.Y) - (lpgodbutton.AbsolutePosition.Y)
1478 lpgodbutton.lpgodlabel.Position = UDim2.new(0,x,0,y)
1479 lpgodbutton.lpgodlabel.Size = UDim2.new(0,50,0,50)
1480 lpgodbutton.lpgodlabel.ImageTransparency = 0.8
1481 lpgodbutton.lpgodlabel.Visible = true
1482
1483 wait()
1484
1485 lpgodbutton.lpgodlabel:TweenSize(
1486 UDim2.new(0,390,0,390),
1487 "Out",
1488 "Quint",
1489 1
1490 )
1491end)
1492
1493lpgodbutton.MouseButton1Up:connect(function()
1494 wait(0.35)
1495 local TweenService = game:GetService("TweenService")
1496 local circle = lpgodbutton.lpgodlabel
1497
1498 local Info = TweenInfo.new(
1499 0.2, -- Length
1500 Enum.EasingStyle.Linear, -- Easing Style
1501 Enum.EasingDirection.Out, -- Easing Direction
1502 0, -- Times repeated
1503 false, -- Reverse
1504 0 -- Delay
1505 )
1506 local Goals =
1507 {
1508 ImageTransparency = 1;
1509 }
1510
1511 local tween = TweenService:Create(circle,Info,Goals)
1512 tween:Play()
1513end)
1514
1515--mygui.maintab.bodyframe.lpframe.lpwalkframe.lpwalkbutton.Script
1516local mouse = game.Players.LocalPlayer:GetMouse()
1517
1518
1519lpwalkbutton.MouseButton1Down:connect(function()
1520 if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed == 16 * 5 then
1521 lpwalkbutton.TextColor3 = Color3.new(1,128/255,0)
1522 lpwalkbutton.lpwalklabel.ImageColor3 = Color3.new(1,128/255,0)
1523 else
1524 lpwalkbutton.TextColor3 = Color3.new(0,157/255,1)
1525 lpwalkbutton.lpwalklabel.ImageColor3 = Color3.new(0,157/255,1)
1526 end
1527
1528 local x = (mouse.X) - (lpwalkbutton.AbsolutePosition.X)
1529 local y = (mouse.Y) - (lpwalkbutton.AbsolutePosition.Y)
1530 lpwalkbutton.lpwalklabel.Position = UDim2.new(0,x,0,y)
1531 lpwalkbutton.lpwalklabel.Size = UDim2.new(0,50,0,50)
1532 lpwalkbutton.lpwalklabel.ImageTransparency = 0.8
1533 lpwalkbutton.lpwalklabel.Visible = true
1534
1535 wait()
1536
1537 lpwalkbutton.lpwalklabel:TweenSize(
1538 UDim2.new(0,390,0,390),
1539 "Out",
1540 "Quint",
1541 1
1542 )
1543end)
1544
1545lpwalkbutton.MouseButton1Up:connect(function()
1546 wait(0.35)
1547 local TweenService = game:GetService("TweenService")
1548 local circle = lpwalkbutton.lpwalklabel
1549
1550 local Info = TweenInfo.new(
1551 0.2, -- Length
1552 Enum.EasingStyle.Linear, -- Easing Style
1553 Enum.EasingDirection.Out, -- Easing Direction
1554 0, -- Times repeated
1555 false, -- Reverse
1556 0 -- Delay
1557 )
1558 local Goals =
1559 {
1560 ImageTransparency = 1;
1561 }
1562
1563 local tween = TweenService:Create(circle,Info,Goals)
1564 tween:Play()
1565end)
1566
1567--mygui.maintab.bodyframe.lpframe.lpgravframe.lpgravbutton.Script
1568local mouse = game.Players.LocalPlayer:GetMouse()
1569
1570lpgravbutton.MouseButton1Down:connect(function()
1571 if game.Workspace.Gravity < 196.1 then
1572 lpgravbutton.TextColor3 = Color3.new(1,128/255,0)
1573 lpgravbutton.lpgravlabel.ImageColor3 = Color3.new(1,128/255,0)
1574 else
1575 lpgravbutton.TextColor3 = Color3.new(0,157/255,1)
1576 lpgravbutton.lpgravlabel.ImageColor3 = Color3.new(0,157/255,1)
1577 end
1578
1579 local x = (mouse.X) - (lpgravbutton.AbsolutePosition.X)
1580 local y = (mouse.Y) - (lpgravbutton.AbsolutePosition.Y)
1581 lpgravbutton.lpgravlabel.Position = UDim2.new(0,x,0,y)
1582 lpgravbutton.lpgravlabel.Size = UDim2.new(0,50,0,50)
1583 lpgravbutton.lpgravlabel.ImageTransparency = 0.8
1584 lpgravbutton.lpgravlabel.Visible = true
1585
1586 wait()
1587
1588 lpgravbutton.lpgravlabel:TweenSize(
1589 UDim2.new(0,390,0,390),
1590 "Out",
1591 "Quint",
1592 1
1593 )
1594end)
1595
1596lpgravbutton.MouseButton1Up:connect(function()
1597 wait(0.35)
1598 local TweenService = game:GetService("TweenService")
1599 local circle = lpgravbutton.lpgravlabel
1600
1601 local Info = TweenInfo.new(
1602 0.2, -- Length
1603 Enum.EasingStyle.Linear, -- Easing Style
1604 Enum.EasingDirection.Out, -- Easing Direction
1605 0, -- Times repeated
1606 false, -- Reverse
1607 0 -- Delay
1608 )
1609 local Goals =
1610 {
1611 ImageTransparency = 1;
1612 }
1613
1614 local tween = TweenService:Create(circle,Info,Goals)
1615 tween:Play()
1616end)
1617
1618--mygui.maintab.bodyframe.lpframe.lpjumpframe.lpjumpbutton.Script
1619local mouse = game.Players.LocalPlayer:GetMouse()
1620
1621
1622lpjumpbutton.MouseButton1Down:connect(function()
1623 if game.Players.LocalPlayer.Character.Humanoid.JumpPower == 100 then
1624 lpjumpbutton.TextColor3 = Color3.new(1,128/255,0)
1625 lpjumpbutton.lpjumplabel.ImageColor3 = Color3.new(1,128/255,0)
1626 else
1627 lpjumpbutton.TextColor3 = Color3.new(0,157/255,1)
1628 lpjumpbutton.lpjumplabel.ImageColor3 = Color3.new(0,157/255,1)
1629 end
1630
1631 local x = (mouse.X) - (lpjumpbutton.AbsolutePosition.X)
1632 local y = (mouse.Y) - (lpjumpbutton.AbsolutePosition.Y)
1633 lpjumpbutton.lpjumplabel.Position = UDim2.new(0,x,0,y)
1634 lpjumpbutton.lpjumplabel.Size = UDim2.new(0,50,0,50)
1635 lpjumpbutton.lpjumplabel.ImageTransparency = 0.8
1636 lpjumpbutton.lpjumplabel.Visible = true
1637
1638 wait()
1639
1640 lpjumpbutton.lpjumplabel:TweenSize(
1641 UDim2.new(0,390,0,390),
1642 "Out",
1643 "Quint",
1644 1
1645 )
1646end)
1647
1648lpjumpbutton.MouseButton1Up:connect(function()
1649 wait(0.35)
1650 local TweenService = game:GetService("TweenService")
1651 local circle = lpjumpbutton.lpjumplabel
1652
1653 local Info = TweenInfo.new(
1654 0.2, -- Length
1655 Enum.EasingStyle.Linear, -- Easing Style
1656 Enum.EasingDirection.Out, -- Easing Direction
1657 0, -- Times repeated
1658 false, -- Reverse
1659 0 -- Delay
1660 )
1661 local Goals =
1662 {
1663 ImageTransparency = 1;
1664 }
1665
1666 local tween = TweenService:Create(circle,Info,Goals)
1667 tween:Play()
1668end)
1669
1670--mygui.maintab.bodyframe.menuframe.generalbuttonframe.generalbutton.Script
1671local mouse = game.Players.LocalPlayer:GetMouse()
1672
1673
1674generalbutton.MouseButton1Down:connect(function()
1675 local x = (mouse.X) - (generalbutton.AbsolutePosition.X)
1676 local y = (mouse.Y) - (generalbutton.AbsolutePosition.Y)
1677 generalbutton.generalbuttonlabel.Position = UDim2.new(0,x,0,y)
1678 generalbutton.generalbuttonlabel.Size = UDim2.new(0,50,0,50)
1679 generalbutton.generalbuttonlabel.ImageTransparency = 0.8
1680 generalbutton.generalbuttonlabel.Visible = true
1681
1682 wait()
1683
1684 generalbutton.generalbuttonlabel:TweenSize(
1685 UDim2.new(0,390,0,390),
1686 "Out",
1687 "Quint",
1688 1
1689 )
1690end)
1691
1692generalbutton.MouseButton1Up:connect(function()
1693 wait(0.35)
1694 local TweenService = game:GetService("TweenService")
1695 local circle = generalbutton.generalbuttonlabel
1696
1697 local Info = TweenInfo.new(
1698 0.2, -- Length
1699 Enum.EasingStyle.Linear, -- Easing Style
1700 Enum.EasingDirection.Out, -- Easing Direction
1701 0, -- Times repeated
1702 false, -- Reverse
1703 0 -- Delay
1704 )
1705 local Goals =
1706 {
1707 ImageTransparency = 1;
1708 }
1709
1710 local tween = TweenService:Create(circle,Info,Goals)
1711 tween:Play()
1712end)
1713
1714--mygui.maintab.bodyframe.menuframe.generalbuttonframe.generalbutton.TransitionScript
1715generalbutton.MouseButton1Click:connect(function()
1716 wait(0.25)
1717 menuframe:TweenPosition(
1718 UDim2.new(0,-256,0,0),
1719 "Out",
1720 "Quint",
1721 0.2
1722 )
1723 generalframe:TweenPosition(
1724 UDim2.new(0,0,0,0),
1725 "Out",
1726 "Quint",
1727 0.2
1728 )
1729 backbutton1.Visible = true
1730 backbutton1.Active = true
1731 maintab.title.Text = "General"
1732 maintab.title.TextSize = 19
1733end)
1734
1735--mygui.maintab.bodyframe.menuframe.lpbuttonframe.lpbutton.Script
1736local mouse = game.Players.LocalPlayer:GetMouse()
1737
1738
1739lpbutton.MouseButton1Down:connect(function()
1740 local x = (mouse.X) - (lpbutton.AbsolutePosition.X)
1741 local y = (mouse.Y) - (lpbutton.AbsolutePosition.Y)
1742 lpbutton.lpbuttonlabel.Position = UDim2.new(0,x,0,y)
1743 lpbutton.lpbuttonlabel.Size = UDim2.new(0,50,0,50)
1744 lpbutton.lpbuttonlabel.ImageTransparency = 0.8
1745 lpbutton.lpbuttonlabel.Visible = true
1746
1747 wait()
1748
1749 lpbuttonlabel:TweenSize(
1750 UDim2.new(0,390,0,390),
1751 "Out",
1752 "Quint",
1753 1
1754 )
1755end)
1756
1757lpbutton.MouseButton1Up:connect(function()
1758 wait(0.35)
1759 local TweenService = game:GetService("TweenService")
1760 local circle = lpbutton.lpbuttonlabel
1761
1762 local Info = TweenInfo.new(
1763 0.2, -- Length
1764 Enum.EasingStyle.Linear, -- Easing Style
1765 Enum.EasingDirection.Out, -- Easing Direction
1766 0, -- Times repeated
1767 false, -- Reverse
1768 0 -- Delay
1769 )
1770 local Goals =
1771 {
1772 ImageTransparency = 1;
1773 }
1774
1775 local tween = TweenService:Create(circle,Info,Goals)
1776 tween:Play()
1777end)
1778
1779--mygui.maintab.bodyframe.menuframe.lpbuttonframe.lpbutton.TransitionScript
1780lpbutton.MouseButton1Click:connect(function()
1781 wait(0.25)
1782 menuframe:TweenPosition(
1783 UDim2.new(0,-256,0,0),
1784 "Out",
1785 "Quint",
1786 0.2
1787 )
1788 lpframe:TweenPosition(
1789 UDim2.new(0,0,0,0),
1790 "Out",
1791 "Quint",
1792 0.2
1793 )
1794 backbutton2.Visible = true
1795 backbutton2.Active = true
1796 maintab.title.Text = "Local Player"
1797 maintab.title.TextSize = 19
1798end)
1799
1800--mygui.maintab.bodyframe.menuframe.tpbuttonframe.tpbutton.Script
1801local mouse = game.Players.LocalPlayer:GetMouse()
1802
1803
1804tpbutton.MouseButton1Down:connect(function()
1805 local x = (mouse.X) - (tpbutton.AbsolutePosition.X)
1806 local y = (mouse.Y) - (tpbutton.AbsolutePosition.Y)
1807 tpbutton.tpbuttonlabel.Position = UDim2.new(0,x,0,y)
1808 tpbutton.tpbuttonlabel.Size = UDim2.new(0,0,0,0)
1809 tpbutton.tpbuttonlabel.ImageTransparency = 0.8
1810 tpbutton.tpbuttonlabel.Visible = true
1811
1812 wait()
1813
1814 tpbutton.tpbuttonlabel:TweenSize(
1815 UDim2.new(0,75,0,75),
1816 "Out",
1817 "Quint",
1818 0.9
1819 )
1820end)
1821
1822tpbutton.MouseButton1Up:connect(function()
1823 wait(0.35)
1824 local TweenService = game:GetService("TweenService")
1825 local circle = tpbutton.tpbuttonlabel
1826
1827 local Info = TweenInfo.new(
1828 0.2, -- Length
1829 Enum.EasingStyle.Linear, -- Easing Style
1830 Enum.EasingDirection.Out, -- Easing Direction
1831 0, -- Times repeated
1832 false, -- Reverse
1833 0 -- Delay
1834 )
1835 local Goals =
1836 {
1837 ImageTransparency = 1;
1838 }
1839
1840 local tween = TweenService:Create(circle,Info,Goals)
1841 tween:Play()
1842end)
1843
1844--mygui.maintab.bodyframe.menuframe.tptextbox.matscript
1845--[[tptextbox.Focused:connect(function()
1846 local mouse = game.Players.LocalPlayer:GetMouse()
1847 tptextbox.tpunderline.BackgroundTransparency = 0
1848 local x = (mouse.X) - (tpbutton.AbsolutePosition.X)
1849 tpunderline.Position = UDim2.new(0,x,0,30) --insert correct offset in Y!!
1850
1851 wait()
1852 tptextbox.tpunderline:TweenSizeAndPosition(
1853 UDim2.new(0,156,0,2),
1854 UDim2.new(0,0,0,30),
1855 "Out",
1856 "Quint",
1857 0.2
1858 )
1859end)]]--
1860
1861--mygui.maintab.backbutton1.Script
1862local mouse = game.Players.LocalPlayer:GetMouse()
1863
1864backbutton1.MouseButton1Down:connect(function()
1865 backbutton1.backbutton1label.Position = UDim2.new(0.5,0,0.5,0)
1866 backbutton1.backbutton1label.Size = UDim2.new(0,0,0,0)
1867 backbutton1.backbutton1label.ImageTransparency = 0.8
1868 backbutton1.backbutton1label.Visible = true
1869
1870 wait()
1871
1872 backbutton1.backbutton1label:TweenSize(
1873 UDim2.new(0,60,0,60),
1874 "Out",
1875 "Quint",
1876 0.25
1877 )
1878end)
1879
1880backbutton1.MouseButton1Up:connect(function()
1881 wait(0.35)
1882 local TweenService = game:GetService("TweenService")
1883 local circle = backbutton1.backbutton1label
1884
1885 local Info = TweenInfo.new(
1886 0.2, -- Length
1887 Enum.EasingStyle.Linear, -- Easing Style
1888 Enum.EasingDirection.Out, -- Easing Direction
1889 0, -- Times repeated
1890 false, -- Reverse
1891 0 -- Delay
1892 )
1893 local Goals =
1894 {
1895 ImageTransparency = 1;
1896 }
1897
1898 local tween = TweenService:Create(circle,Info,Goals)
1899 tween:Play()
1900end)
1901
1902--mygui.maintab.backbutton1.TransitionScript
1903backbutton1.MouseButton1Click:connect(function()
1904 wait(0.2)
1905 menuframe:TweenPosition(
1906 UDim2.new(0,0,0,0),
1907 "Out",
1908 "Quint",
1909 0.2
1910 )
1911 generalframe:TweenPosition(
1912 UDim2.new(0,256,0,0),
1913 "Out",
1914 "Quint",
1915 0.2
1916 )
1917 backbutton1.Visible = false
1918 backbutton1.Active = false
1919 maintab.title.Text = "MM2 Gui"
1920 maintab.title.TextSize = 20
1921end)
1922
1923--mygui.maintab.backbutton2.Script
1924local mouse = game.Players.LocalPlayer:GetMouse()
1925
1926
1927backbutton2.MouseButton1Down:connect(function()
1928 backbutton2.backbutton2label.Position = UDim2.new(0.5,0,0.5,0)
1929 backbutton2.backbutton2label.Size = UDim2.new(0,0,0,0)
1930 backbutton2.backbutton2label.ImageTransparency = 0.8
1931 backbutton2.backbutton2label.Visible = true
1932
1933 wait()
1934
1935 backbutton2.backbutton2label:TweenSize(
1936 UDim2.new(0,60,0,60),
1937 "Out",
1938 "Quint",
1939 0.25
1940 )
1941end)
1942
1943backbutton2.MouseButton1Up:connect(function()
1944 wait(0.35)
1945 local TweenService = game:GetService("TweenService")
1946 local circle = backbutton2.backbutton2label
1947
1948 local Info = TweenInfo.new(
1949 0.2, -- Length
1950 Enum.EasingStyle.Linear, -- Easing Style
1951 Enum.EasingDirection.Out, -- Easing Direction
1952 0, -- Times repeated
1953 false, -- Reverse
1954 0 -- Delay
1955 )
1956 local Goals =
1957 {
1958 ImageTransparency = 1;
1959 }
1960
1961 local tween = TweenService:Create(circle,Info,Goals)
1962 tween:Play()
1963end)
1964
1965--mygui.maintab.backbutton2.TransitionScript
1966backbutton2.MouseButton1Click:connect(function()
1967 wait(0.2)
1968 menuframe:TweenPosition(
1969 UDim2.new(0,0,0,0),
1970 "Out",
1971 "Quint",
1972 0.2
1973 )
1974 lpframe:TweenPosition(
1975 UDim2.new(0,256,0,0),
1976 "Out",
1977 "Quint",
1978 0.2
1979 )
1980 backbutton2.Visible = false
1981 backbutton2.Active = false
1982 backbutton2.Parent.title.Text = "MM2 Gui"
1983 backbutton2.Parent.title.TextSize = 20
1984end)
1985
1986--mygui.maintab.creditsbutton.Script
1987local mouse = game.Players.LocalPlayer:GetMouse()
1988
1989
1990creditsbutton.MouseButton1Down:connect(function()
1991 local x = (mouse.X) - (creditsbutton.AbsolutePosition.X)
1992 local y = (mouse.Y) - (creditsbutton.AbsolutePosition.Y)
1993 creditsbutton.creditsiconlabel1.Position = UDim2.new(0,x,0,y)
1994 creditsbutton.creditsiconlabel1.Size = UDim2.new(0,0,0,0)
1995 creditsbutton.creditsiconlabel1.ImageTransparency = 0.8
1996 creditsbutton.creditsiconlabel1.Visible = true
1997
1998 wait()
1999
2000 creditsbutton.creditsiconlabel1:TweenSize(
2001 UDim2.new(0,75,0,75),
2002 "Out",
2003 "Quint",
2004 0.9
2005 )
2006end)
2007
2008creditsbutton.MouseButton1Up:connect(function()
2009 wait(0.35)
2010 local TweenService = game:GetService("TweenService")
2011 local circle = creditsbutton.creditsiconlabel1
2012
2013 local Info = TweenInfo.new(
2014 0.2, -- Length
2015 Enum.EasingStyle.Linear, -- Easing Style
2016 Enum.EasingDirection.Out, -- Easing Direction
2017 0, -- Times repeated
2018 false, -- Reverse
2019 0 -- Delay
2020 )
2021 local Goals =
2022 {
2023 ImageTransparency = 1;
2024 }
2025
2026 local tween = TweenService:Create(circle,Info,Goals)
2027 tween:Play()
2028end)
2029
2030--mygui.maintab.creditsbutton.CreditsWindowScript
2031creditsbutton.MouseButton1Click:connect(function()
2032 creditstab.Visible = true
2033 creditstab.Active = true
2034end)
2035
2036--mygui.creditstab.closecredits.Script
2037closecredits.MouseButton1Click:connect(function()
2038 creditstab.Visible = false
2039 creditstab.Active = false
2040end)
2041
2042--mygui.toggle.closeopen.CloseOpenScript
2043closeopen.MouseButton1Click:connect(function()
2044 if
2045 (maintab.Visible == true) and
2046 (maintab.Active == true) then
2047 maintab.Visible = false
2048 maintab.Active = false
2049 closeopen.Text = "Open"
2050 else
2051 maintab.Visible = true
2052 maintab.Active = true
2053 closeopen.Text = "Close"
2054 end
2055end)
2056
2057--mygui.toggle.closeopen.Script
2058local mouse = game.Players.LocalPlayer:GetMouse()
2059
2060
2061closeopen.MouseButton1Down:connect(function()
2062 local x = (mouse.X) - (closeopen.AbsolutePosition.X)
2063 local y = (mouse.Y) - (closeopen.AbsolutePosition.Y)
2064 closeopen.closeopenlabel.Position = UDim2.new(0,x,0,y)
2065 closeopen.closeopenlabel.Size = UDim2.new(0,50,0,50)
2066 closeopen.closeopenlabel.ImageTransparency = 0.8
2067 closeopen.closeopenlabel.Visible = true
2068
2069 wait()
2070
2071 closeopen.closeopenlabel:TweenSize(
2072 UDim2.new(0,240,0,240),
2073 "Out",
2074 "Quint",
2075 1
2076 )
2077end)
2078
2079closeopen.MouseButton1Up:connect(function()
2080 wait(0.35)
2081 local TweenService = game:GetService("TweenService")
2082 local circle = closeopen.closeopenlabel
2083
2084 local Info = TweenInfo.new(
2085 0.2, -- Length
2086 Enum.EasingStyle.Linear, -- Easing Style
2087 Enum.EasingDirection.Out, -- Easing Direction
2088 0, -- Times repeated
2089 false, -- Reverse
2090 0 -- Delay
2091 )
2092 local Goals =
2093 {
2094 ImageTransparency = 1;
2095 }
2096
2097 local tween = TweenService:Create(circle,Info,Goals)
2098 tween:Play()
2099end)
2100
2101--mygui.toggle.closeall.Script
2102closeall.MouseButton1Click:connect(function()
2103 mygui:Remove()
2104end)
2105
2106-- Scripts
2107
2108lpgravbutton.MouseButton1Down:connect(function()
2109 if game.Workspace.Gravity > 196.1 then
2110 game.Workspace.Gravity = 50
2111 else
2112 game.Workspace.Gravity = 196.2
2113 end
2114end)
2115
2116lpwalkbutton.MouseButton1Down:connect(function()
2117 if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed == 16 then
2118 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 * 5
2119 else
2120 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
2121 end
2122end)
2123
2124lpjumpbutton.MouseButton1Down:connect(function()
2125 if game.Players.LocalPlayer.Character.Humanoid.JumpPower == 50 then
2126 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
2127 else
2128 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
2129 end
2130end)
2131
2132lpgodbutton.MouseButton1Down:connect(function()
2133 game.Players.LocalPlayer.Character.Humanoid:Remove()
2134 Instance.new('Humanoid', game.Players.LocalPlayer.Character)
2135end)
2136
2137generallobbybutton.MouseButton1Down:connect(function()
2138 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-109.56, 140, -11.75) + Vector3.new(1, 0, 0)
2139end)
2140
2141generalgunbutton.MouseButton1Down:connect(function()
2142 game.Workspace.GunDrop.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(2,0,0)
2143end)
2144
2145generalcoinbutton.MouseButton1Down:connect(function()
2146 for i = 10, 1, -1 do
2147 for i,v in pairs(game.Workspace:GetChildren()) do
2148 local s = v:FindFirstChild("CoinContainer")
2149 local e = game.Players.LocalPlayer.Character:FindFirstChild("Torso")
2150 if e and s then
2151 for i,c in pairs(s:GetChildren()) do
2152 c.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame
2153 end
2154 end
2155 end
2156 wait(0.7)
2157 end
2158end)
2159
2160--[[tpbutton.MouseButton1Down:connect(function()
2161 for i,v in pairs(game.Workspace:GetChildren()) do
2162 if tptextbox.Text:lower() == v.Name:lower() then
2163 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[v.Name].HumanoidRootPart.CFrame
2164 else
2165 print("Player not found")
2166 end
2167 end
2168end)]]--
2169
2170
2171
2172
2173--script
2174local parent = tptextbox --insert textbox name!
2175local mouse = game.Players.LocalPlayer:GetMouse()
2176
2177local xsize = parent.Size.X.Offset
2178local ysize = parent.Size.Y.Offset
2179parent.Visible = true
2180parent.Active = true
2181parent.Selectable = true
2182
2183local Underline = Instance.new("Frame")
2184local UnderlineBase = Instance.new("Frame")
2185
2186Underline.Name = "Underline"
2187Underline.Parent = parent
2188Underline.BackgroundColor3 = parent.TextColor3
2189Underline.BorderSizePixel = 0
2190Underline.Position = UDim2.new(0, 0, 1, 0)
2191Underline.Size = UDim2.new(0, 0, 0, 1)
2192
2193UnderlineBase.Name = "UnderlineBase"
2194UnderlineBase.Parent = parent
2195UnderlineBase.BackgroundColor3 = parent.TextColor3
2196UnderlineBase.BackgroundTransparency = 0.85
2197UnderlineBase.BorderSizePixel = 0
2198UnderlineBase.Position = UDim2.new(0, 0, 1, 0)
2199UnderlineBase.Size = UDim2.new(0, xsize, 0, 1)
2200
2201parent.Focused:connect(function()
2202 local x = (mouse.X) - (parent.AbsolutePosition.X)
2203 Underline.BackgroundTransparency = 0
2204 Underline.Position = UDim2.new(0,x,1,0)
2205 wait()
2206 Underline:TweenSizeAndPosition(
2207 UDim2.new(0, xsize, 0, 1),
2208 UDim2.new(0, 0, 1, 0),
2209 "Out",
2210 "Quint",
2211 0.2
2212 )
2213end)
2214
2215parent.FocusLost:connect(function(enterPressed)
2216 if parent.Text == "" then
2217 parent.Text = "Player Name"
2218 end
2219
2220 local TweenService = game:GetService("TweenService")
2221
2222 local Info = TweenInfo.new(
2223 0.15,
2224 Enum.EasingStyle.Linear,
2225 Enum.EasingDirection.Out,
2226 0,
2227 false,
2228 0
2229 )
2230 local Goals =
2231 {
2232 BackgroundTransparency = 1;
2233 }
2234
2235 local tween = TweenService:Create(Underline,Info,Goals)
2236 tween:Play()
2237
2238 wait(0.15)
2239 Underline.Size = UDim2.new(0,0,0,1)
2240
2241 if enterPressed then
2242 for i,v in pairs(game.Workspace:GetChildren()) do
2243 if tptextbox.Text:lower() == v.Name:lower() then
2244 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[v.Name].HumanoidRootPart.CFrame
2245 else
2246 print("Player not found")
2247 end
2248 end
2249 print(true)
2250 elseif tptextbox.Text ~= "Player Name" then
2251 tptextbox.Text = "Press Enter to TP"
2252 end
2253end)
2254
2255--/script
2256
2257if enterPressed then
2258 for i,v in pairs(game.Workspace:GetChildren()) do
2259 if tptextbox.Text:lower() == v.Name:lower() then
2260 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[v.Name].HumanoidRootPart.CFrame
2261 else
2262 print("Player not found")
2263 end
2264 end
2265end
2266
2267generalespbutton.MouseButton1Down:connect(function()
2268 --credits to Nebula Hub for the esp + aimbot
2269 PLAYER = game.Players.LocalPlayer
2270 MOUSE = PLAYER:GetMouse()
2271 CC = game.Workspace.CurrentCamera
2272
2273 ENABLED = false
2274 ESP_ENABLED = false
2275
2276 _G.FREE_FOR_ALL = true
2277
2278 _G.BIND = 50
2279 _G.ESP_BIND = 52
2280 _G.CHANGE_AIM = 'q'
2281
2282 _G.AIM_AT = 'Head'
2283
2284 wait(1)
2285
2286 function GetNearestPlayerToMouse()
2287 local PLAYERS = {}
2288 local PLAYER_HOLD = {}
2289 local DISTANCES = {}
2290 for i, v in pairs(game.Players:GetPlayers()) do
2291 if v ~= PLAYER then
2292 table.insert(PLAYERS, v)
2293 end
2294 end
2295 for i, v in pairs(PLAYERS) do
2296 if _G.FREE_FOR_ALL == false then
2297 if v and (v.Character) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
2298 local AIM = v.Character:FindFirstChild(_G.AIM_AT)
2299 if AIM ~= nil then
2300 local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
2301 local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
2302 local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
2303 local DIFF = math.floor((POS - AIM.Position).magnitude)
2304 PLAYER_HOLD[v.Name .. i] = {}
2305 PLAYER_HOLD[v.Name .. i].dist = DISTANCE
2306 PLAYER_HOLD[v.Name .. i].plr = v
2307 PLAYER_HOLD[v.Name .. i].diff = DIFF
2308 table.insert(DISTANCES, DIFF)
2309 end
2310 end
2311 elseif _G.FREE_FOR_ALL == true then
2312 local AIM = v.Character:FindFirstChild(_G.AIM_AT)
2313 if AIM ~= nil then
2314 local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
2315 local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
2316 local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
2317 local DIFF = math.floor((POS - AIM.Position).magnitude)
2318 PLAYER_HOLD[v.Name .. i] = {}
2319 PLAYER_HOLD[v.Name .. i].dist = DISTANCE
2320 PLAYER_HOLD[v.Name .. i].plr = v
2321 PLAYER_HOLD[v.Name .. i].diff = DIFF
2322 table.insert(DISTANCES, DIFF)
2323 end
2324 end
2325 end
2326
2327 if unpack(DISTANCES) == nil then
2328 return false
2329 end
2330
2331 local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
2332 if L_DISTANCE > 20 then
2333 return false
2334 end
2335
2336 for i, v in pairs(PLAYER_HOLD) do
2337 if v.diff == L_DISTANCE then
2338 return v.plr
2339 end
2340 end
2341 return false
2342 end
2343
2344 GUI_MAIN = Instance.new('ScreenGui', game.CoreGui)
2345 GUI_TARGET = Instance.new('TextLabel', GUI_MAIN)
2346 GUI_AIM_AT = Instance.new('TextLabel', GUI_MAIN)
2347
2348 GUI_MAIN.Name = 'AIMBOT'
2349
2350 GUI_TARGET.Size = UDim2.new(0,200,0,30)
2351 GUI_TARGET.BackgroundTransparency = 0.5
2352 GUI_TARGET.BackgroundColor = BrickColor.new('Fossil')
2353 GUI_TARGET.BorderSizePixel = 0
2354 GUI_TARGET.Position = UDim2.new(0.5,-100,0,0)
2355 GUI_TARGET.Text = 'AIMBOT : OFF'
2356 GUI_TARGET.TextColor3 = Color3.new(1,1,1)
2357 GUI_TARGET.TextStrokeTransparency = 1
2358 GUI_TARGET.TextWrapped = true
2359 GUI_TARGET.FontSize = 'Size24'
2360 GUI_TARGET.Font = 'SourceSansBold'
2361
2362 GUI_AIM_AT.Size = UDim2.new(0,200,0,20)
2363 GUI_AIM_AT.BackgroundTransparency = 0.5
2364 GUI_AIM_AT.BackgroundColor = BrickColor.new('Fossil')
2365 GUI_AIM_AT.BorderSizePixel = 0
2366 GUI_AIM_AT.Position = UDim2.new(0.5,-100,0,30)
2367 GUI_AIM_AT.Text = 'AIMING : HEAD'
2368 GUI_AIM_AT.TextColor3 = Color3.new(1,1,1)
2369 GUI_AIM_AT.TextStrokeTransparency = 1
2370 GUI_AIM_AT.TextWrapped = true
2371 GUI_AIM_AT.FontSize = 'Size18'
2372 GUI_AIM_AT.Font = 'SourceSansBold'
2373
2374 local TRACK = false
2375
2376 function CREATE(BASE, COLOR)
2377 local ESP_MAIN = Instance.new('BillboardGui', PLAYER.PlayerGui)
2378 local ESP_DOT = Instance.new('Frame', ESP_MAIN)
2379 local ESP_NAME = Instance.new('TextLabel', ESP_MAIN)
2380
2381 ESP_MAIN.Name = 'ESP'
2382 ESP_MAIN.Adornee = BASE
2383 ESP_MAIN.AlwaysOnTop = true
2384 ESP_MAIN.ExtentsOffset = Vector3.new(0, 1, 0)
2385 ESP_MAIN.Size = UDim2.new(0, 5, 0, 5)
2386
2387 ESP_DOT.Name = 'DOT'
2388 ESP_DOT.BackgroundColor3 = COLOR
2389 ESP_DOT.BackgroundTransparency = 0.3
2390 ESP_DOT.BorderSizePixel = 0
2391 ESP_DOT.Position = UDim2.new(-0.5, 0, -0.5, 0)
2392 ESP_DOT.Size = UDim2.new(2, 0, 2, 0)
2393 ESP_DOT.Visible = true
2394 ESP_DOT.ZIndex = 10
2395
2396 ESP_NAME.Name = 'NAME'
2397 ESP_NAME.BackgroundColor3 = Color3.new(255, 255, 255)
2398 ESP_NAME.BackgroundTransparency = 1
2399 ESP_NAME.BorderSizePixel = 0
2400 ESP_NAME.Position = UDim2.new(0, 0, 0, -40)
2401 ESP_NAME.Size = UDim2.new(1, 0, 10, 0)
2402 ESP_NAME.Visible = true
2403 ESP_NAME.ZIndex = 10
2404 ESP_NAME.Font = 'ArialBold'
2405 ESP_NAME.FontSize = 'Size14'
2406 ESP_NAME.Text = BASE.Parent.Name:upper()
2407 ESP_NAME.TextColor3 = COLOR
2408 end
2409
2410 function CLEAR()
2411 for _,v in pairs(PLAYER.PlayerGui:children()) do
2412 if v.Name == 'ESP' and v:IsA('BillboardGui') then
2413 v:Destroy()
2414 end
2415 end
2416 end
2417
2418 local Remote = game:service'ReplicatedStorage'.GetPlayerData
2419 local player_roles = Remote:InvokeServer()
2420 function FIND()
2421 CLEAR()
2422 TRACK = true
2423 spawn(function()
2424 while wait() do
2425 if TRACK then
2426 CLEAR()
2427 local a,b = ypcall(function()
2428 for name,player in pairs(player_roles)do
2429 if game:service'Players':FindFirstChild(name) ~= nil then
2430 local v = game:service'Players':FindFirstChild(name)
2431 if v.Character and v.Character:FindFirstChild('Head') then
2432 if v.Character:FindFirstChild('Head') then
2433 if player.Dead ~= true then
2434 if player.Role == "Murderer"then
2435 CREATE(v.Character.Head, Color3.new(1,0,0))
2436 elseif player.Role == "Sheriff" or player.Role == "Hero" then
2437 CREATE(v.Character.Head, Color3.new(0,0,1))
2438 else
2439 CREATE(v.Character.Head, Color3.new(0,1,0))
2440 end
2441 end
2442 end
2443 end
2444 end
2445 end
2446 end)
2447 end
2448 end
2449 wait(1)
2450 end)
2451 end
2452 coroutine.wrap(function()
2453 while wait()do
2454 player_roles = Remote:InvokeServer()
2455 end
2456 end)()
2457
2458 MOUSE.KeyDown:connect(function(KEY)
2459 KEY = KEY:lower():byte()
2460 if KEY == _G.BIND then
2461 ENABLED = true
2462 end
2463 end)
2464
2465 MOUSE.KeyUp:connect(function(KEY)
2466 KEY = KEY:lower():byte()
2467 if KEY == _G.BIND then
2468 ENABLED = false
2469 end
2470 end)
2471
2472 MOUSE.KeyDown:connect(function(KEY)
2473 KEY = KEY:lower():byte()
2474 if KEY == _G.ESP_BIND then
2475 if ESP_ENABLED == false then
2476 FIND()
2477 ESP_ENABLED = true
2478 print('ESP : ON')
2479 elseif ESP_ENABLED == true then
2480 wait()
2481 CLEAR()
2482 TRACK = false
2483 ESP_ENABLED = false
2484 print('ESP : OFF')
2485 end
2486 end
2487 end)
2488
2489 MOUSE.KeyDown:connect(function(KEY)
2490 if KEY == _G.CHANGE_AIM then
2491 if _G.AIM_AT == 'Head' then
2492 _G.AIM_AT = 'Torso'
2493 GUI_AIM_AT.Text = 'AIMING : TORSO'
2494 elseif _G.AIM_AT == 'Torso' then
2495 _G.AIM_AT = 'Head'
2496 GUI_AIM_AT.Text = 'AIMING : HEAD'
2497 end
2498 end
2499 end)
2500
2501 game:GetService('RunService').RenderStepped:connect(function()
2502 if ENABLED then
2503 local TARGET = GetNearestPlayerToMouse()
2504 if (TARGET ~= false) then
2505 local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
2506 if AIM then
2507 CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
2508 end
2509 GUI_TARGET.Text = 'AIMBOT : '.. TARGET.Name:sub(1, 5)
2510 else
2511 GUI_TARGET.Text = 'AIMBOT : OFF'
2512 end
2513 end
2514 end)
2515
2516 repeat
2517 wait()
2518 if ESP_ENABLED == true then
2519 FIND()
2520 end
2521 until ESP_ENABLED == false
2522
2523
2524 wait()
2525
2526 _G.FREE_FOR_ALL = true
2527
2528 _G.BIND = 50 -- LEFT CTRL
2529 _G.ESP_BIND = 52 -- LEFT ALT
2530end)
2531
2532local plr = game.Players.LocalPlayer
2533
2534plr:GetMouse().KeyDown:connect(function(KeyUp)
2535 if KeyUp == "0" then
2536 plr.Character.Humanoid.WalkSpeed = 35
2537 end
2538end)
2539
2540plr:GetMouse().KeyUp:connect(function(KeyUp)
2541 if KeyUp == "0" then
2542 plr.Character.Humanoid.WalkSpeed = 16
2543 end
2544end)
2545end)