· 5 years ago · Sep 09, 2020, 12:22 AM
1many cool features!
213.50 KB
3
4DaHoodGui = Instance.new("ScreenGui")
5OpenButton = Instance.new("TextButton")
6CloseButton = Instance.new("TextButton")
7Main = Instance.new("Frame")
8Title = Instance.new("TextLabel")
9WalkspeedQ = Instance.new("TextButton")
10NoclipB = Instance.new("TextButton")
11RemoveAll = Instance.new("TextButton")
12GravityON = Instance.new("TextButton")
13Godmode = Instance.new("TextButton")
14GravityOFF = Instance.new("TextButton")
15BTools = Instance.new("TextButton")
16InfiniteJump = Instance.new("TextButton")
17InputPlayer = Instance.new("TextBox")
18GotoPlayer = Instance.new("TextButton")
19local OpenTP_2 = Instance.new("TextButton")
20local CloseFAST = Instance.new("TextButton")
21local EspStatus = Instance.new("TextLabel")
22local st1 = Instance.new("TextLabel")
23local st1_2 = Instance.new("TextLabel")
24local st1_3 = Instance.new("TextLabel")
25local Name = Instance.new("TextLabel")
26local Move = Instance.new("Frame")
27
28DaHoodGui.Name = "Da Hood Gui"
29DaHoodGui.Parent = game.CoreGui
30
31OpenButton.Name = "OpenButton"
32OpenButton.Parent = DaHoodGui
33OpenButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
34OpenButton.BorderSizePixel = 0
35OpenButton.Position = UDim2.new(0, 0, 0.640625, 0)
36OpenButton.Size = UDim2.new(0, 139, 0, 50)
37OpenButton.Font = Enum.Font.Cartoon
38OpenButton.FontSize = Enum.FontSize.Size14
39OpenButton.Text = "OPEN"
40OpenButton.TextColor3 = Color3.new(1, 1, 1)
41OpenButton.TextScaled = true
42OpenButton.TextSize = 14
43OpenButton.TextWrapped = true
44OpenButton.MouseButton1Down:connect(function()
45Main.Visible = true
46CloseButton.Visible = true
47OpenButton.Visible = false
48end)
49
50CloseButton.Name = "CloseButton"
51CloseButton.Parent = DaHoodGui
52CloseButton.Visible = false
53CloseButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
54CloseButton.BorderSizePixel = 0
55CloseButton.Position = UDim2.new(0, 0, 0.640625, 0)
56CloseButton.Size = UDim2.new(0, 139, 0, 50)
57CloseButton.Font = Enum.Font.Cartoon
58CloseButton.FontSize = Enum.FontSize.Size14
59CloseButton.Text = "CLOSE"
60CloseButton.TextColor3 = Color3.new(1, 1, 1)
61CloseButton.TextScaled = true
62CloseButton.TextSize = 14
63CloseButton.TextWrapped = true
64CloseButton.MouseButton1Down:connect(function()
65Main.Visible = false
66CloseButton.Visible = false
67OpenButton.Visible = true
68end)
69
70Main.Name = "Main"
71Main.Parent = DaHoodGui
72Main.Draggable = true
73Main.Active = true
74Main.Visible = false
75Main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
76Main.BorderSizePixel = 0
77Main.BackgroundTransparency = 0.69999998807907
78Main.Position = UDim2.new(0.187782809, 0, 0.0809327811, 0)
79Main.Size = UDim2.new(0, 652, 0, 500)
80
81Title.Name = "Title"
82Title.Parent = Main
83Title.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
84Title.BorderSizePixel = 0
85Title.Size = UDim2.new(0, 652, 0, 50)
86Title.Font = Enum.Font.SourceSansBold
87Title.FontSize = Enum.FontSize.Size48
88Title.Text = "Da Hood Gui | Created by Mythitem."
89Title.TextColor3 = Color3.new(1, 1, 1)
90Title.TextSize = 40
91Title.TextWrapped = true
92
93WalkspeedQ.Name = "WalkspeedQ"
94WalkspeedQ.Parent = Main
95WalkspeedQ.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
96WalkspeedQ.BorderSizePixel = 0
97WalkspeedQ.Position = UDim2.new(0.0178603820, 0, 0.112641335, 0)
98WalkspeedQ.Size = UDim2.new(0, 300, 0, 50)
99WalkspeedQ.Font = Enum.Font.Bodoni
100WalkspeedQ.FontSize = Enum.FontSize.Size32
101WalkspeedQ.Text = "SpeedHax [Q]"
102WalkspeedQ.TextColor3 = Color3.new(1, 1, 1)
103WalkspeedQ.TextSize = 30
104WalkspeedQ.MouseButton1Down:connect(function()
105local walkspeedplayer = game:GetService("Players").LocalPlayer
106local walkspeedmouse = walkspeedplayer:GetMouse()
107
108local walkspeedenabled = false
109
110function x_walkspeed(key)
111if (key == "q") then
112if walkspeedenabled == false then
113_G.WS = 200;
114local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
115Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
116Humanoid.WalkSpeed = _G.WS;
117end)
118Humanoid.WalkSpeed = _G.WS;
119
120walkspeedenabled = true
121elseif walkspeedenabled == true then
122_G.WS = 20;
123local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
124Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
125Humanoid.WalkSpeed = _G.WS;
126end)
127Humanoid.WalkSpeed = _G.WS;
128
129walkspeedenabled = false
130end
131end
132end
133
134walkspeedmouse.KeyDown:connect(x_walkspeed)
135
136end)
137
138NoclipB.Name = "NoclipB"
139NoclipB.Parent = Main
140NoclipB.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
141NoclipB.BorderSizePixel = 0
142NoclipB.Position = UDim2.new(0.0178603820, 0, 0.212641335, 0)
143NoclipB.Size = UDim2.new(0, 300, 0, 50)
144NoclipB.Font = Enum.Font.Bodoni
145NoclipB.FontSize = Enum.FontSize.Size32
146NoclipB.Text = "Noclip [B]"
147NoclipB.TextColor3 = Color3.new(1, 1, 1)
148NoclipB.TextSize = 30
149NoclipB.MouseButton1Down:connect(function()
150
151local noclipplayer = game:GetService("Players").LocalPlayer
152local noclipmouse = noclipplayer:GetMouse()
153
154local donoclip = false
155local noclip = false
156
157function b_noclip(key)
158if (key == "b") then
159if noclip == false then
160donoclip = true
161
162noclip = true
163elseif noclip == true then
164donoclip = false
165
166noclip = false
167end
168end
169end
170
171noclipmouse.KeyDown:connect(b_noclip)
172
173game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
174if obj ~= workspace.Terrain then
175if donoclip == true then
176obj.CanCollide = false
177else
178obj.CanCollide = true
179end
180end
181end)
182end)
183
184GravityON.Name = "Gravity ON"
185GravityON.Parent = Main
186GravityON.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
187GravityON.BorderSizePixel = 0
188GravityON.Position = UDim2.new(0.0178603820, 0, 0.312641335, 0)
189GravityON.Size = UDim2.new(0, 300, 0, 50)
190GravityON.Font = Enum.Font.Bodoni
191GravityON.FontSize = Enum.FontSize.Size32
192GravityON.Text = "Gravity: ON"
193GravityON.TextColor3 = Color3.new(1, 1, 1)
194GravityON.TextSize = 30
195GravityON.MouseButton1Down:connect(function()
196game.Workspace.Gravity = 196.2
197GravityOFF.Visible = true
198GravityON.Visible = false
199end)
200
201Godmode.Name = "Godmode-Sorta Works"
202Godmode.Parent = Main
203Godmode.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
204Godmode.BorderSizePixel = 0
205Godmode.Position = UDim2.new(0.0178603820, 0, 0.412641335, 0)
206Godmode.Size = UDim2.new(0, 300, 0, 50)
207Godmode.Font = Enum.Font.Bodoni
208Godmode.FontSize = Enum.FontSize.Size32
209Godmode.Text = "Godmode-Sorta Works"
210Godmode.TextColor3 = Color3.new(1, 1, 1)
211Godmode.TextSize = 30
212Godmode.MouseButton1Down:connect(function()
213game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
214local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
215l.Parent = game:GetService("Players").LocalPlayer.Character
216l.Name = "Humanoid"
217wait(0.1)
218game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
219game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
220game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
221wait(0.1)
222game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
223game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
224end)
225
226GravityOFF.Name = "Gravity OFF"
227GravityOFF.Parent = Main
228GravityOFF.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
229GravityOFF.BorderSizePixel = 0
230GravityOFF.Position = UDim2.new(0.0178603820, 0, 0.512641335, 0)
231GravityOFF.Size = UDim2.new(0, 300, 0, 50)
232GravityOFF.Font = Enum.Font.Bodoni
233GravityOFF.FontSize = Enum.FontSize.Size32
234GravityOFF.Text = "Gravity: OFF"
235GravityOFF.TextColor3 = Color3.new(1, 1, 1)
236GravityOFF.TextSize = 30
237GravityOFF.MouseButton1Down:connect(function()
238game.Workspace.Gravity = 35
239GravityOFF.Visible = false
240GravityON.Visible = true
241end)
242
243BTools.Name = "BTools"
244BTools.Parent = Main
245BTools.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
246BTools.BorderSizePixel = 0
247BTools.Position = UDim2.new(0.0178603820, 0, 0.612641335, 0)
248BTools.Size = UDim2.new(0, 300, 0, 50)
249BTools.Font = Enum.Font.Bodoni
250BTools.FontSize = Enum.FontSize.Size32
251BTools.Text = "BTools"
252BTools.TextColor3 = Color3.new(1, 1, 1)
253BTools.TextSize = 30
254BTools.MouseButton1Down:connect(function()
255game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
256for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
257 if child.ClassName == "Part" then
258 child.Locked = false
259 end
260 if child.ClassName == "MeshPart" then
261 child.Locked = false
262 end
263 if child.ClassName == "UnionOperation" then
264 child.Locked = false
265 end
266 if child.ClassName == "Model" then
267 for index, chil in pairs(child:GetChildren()) do
268 if chil.ClassName == "Part" then
269 chil.Locked = false
270 end
271 if chil.ClassName == "MeshPart" then
272 chil.Locked = false
273 end
274 if chil.ClassName == "UnionOperation" then
275 chil.Locked = false
276 end
277 if chil.ClassName == "Model" then
278 for index, childe in pairs(chil:GetChildren()) do
279 if childe.ClassName == "Part" then
280 childe.Locked = false
281 end
282 if childe.ClassName == "MeshPart" then
283 childe.Locked = false
284 end
285 if childe.ClassName == "UnionOperation" then
286 childe.Locked = false
287 end
288 if childe.ClassName == "Model" then
289 for index, childeo in pairs(childe:GetChildren()) do
290 if childeo.ClassName == "Part" then
291 childeo.Locked = false
292 end
293 if childeo.ClassName == "MeshPart" then
294 childeo.Locked = false
295 end
296 if childeo.ClassName == "UnionOperation" then
297 childeo.Locked = false
298 end
299 if childeo.ClassName == "Model" then
300 end
301 end
302 end
303 end
304 end
305 end
306 end
307end
308c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
309c.BinType = Enum.BinType.Hammer
310c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
311c.BinType = Enum.BinType.Clone
312c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
313c.BinType = Enum.BinType.Grab
314end)
315
316InfiniteJump.Name = "Infinite Jump"
317InfiniteJump.Parent = Main
318InfiniteJump.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
319InfiniteJump.BorderSizePixel = 0
320InfiniteJump.Position = UDim2.new(0.0178603820, 0, 0.712641335, 0)
321InfiniteJump.Size = UDim2.new(0, 300, 0, 50)
322InfiniteJump.Font = Enum.Font.Bodoni
323InfiniteJump.FontSize = Enum.FontSize.Size32
324InfiniteJump.Text = "Infinite Jump"
325InfiniteJump.TextColor3 = Color3.new(1, 1, 1)
326InfiniteJump.TextSize = 30
327InfiniteJump.MouseButton1Down:connect(function()
328game:GetService("UserInputService").JumpRequest:connect(function()
329game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
330end)
331end)
332
333InputPlayer.Name = "InputPlayer"
334InputPlayer.Parent = Main
335InputPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
336InputPlayer.BorderSizePixel = 0
337InputPlayer.Position = UDim2.new(0.0178603820, 0, 0.812641335, 0)
338InputPlayer.Size = UDim2.new(0, 300, 0, 50)
339InputPlayer.Font = Enum.Font.Cartoon
340InputPlayer.FontSize = Enum.FontSize.Size14
341InputPlayer.Text = "Player"
342InputPlayer.TextColor3 = Color3.new(1, 1, 1)
343InputPlayer.TextScaled = true
344InputPlayer.TextSize = 14
345InputPlayer.TextWrapped = true
346
347GotoPlayer.Name = "Goto Player"
348GotoPlayer.Parent = Main
349GotoPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
350GotoPlayer.BorderSizePixel = 0
351GotoPlayer.Position = UDim2.new(0.478603820, 0, 0.812641335, 0)
352GotoPlayer.Size = UDim2.new(0, 300, 0, 50)
353GotoPlayer.Font = Enum.Font.Bodoni
354GotoPlayer.FontSize = Enum.FontSize.Size32
355GotoPlayer.Text = "Goto Player"
356GotoPlayer.TextColor3 = Color3.new(1, 1, 1)
357GotoPlayer.TextSize = 30
358GotoPlayer.MouseButton1Down:connect(function()
359local tp_namedplayer = InputPlayer.Text
360local tp_player = game:GetService("Players")[tp_namedplayer]
361local PLR = game:GetService("Players").LocalPlayer
362local p = InputPlayer.Text
363
364if tp_player then
365for i = 1,20 do
366wait()
367PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
368end
369end
370end)
371
372OpenTP_2.Name = "OpenTP"
373OpenTP_2.Parent = Main
374OpenTP_2.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
375OpenTP_2.BorderSizePixel = 0
376OpenTP_2.Position = UDim2.new(0.478603820, 0, 0.112641335, 0)
377OpenTP_2.Size = UDim2.new(0, 300, 0, 50)
378OpenTP_2.Font = Enum.Font.Bodoni
379OpenTP_2.Text = "Click to TP"
380OpenTP_2.TextColor3 = Color3.new(1, 1, 1)
381OpenTP_2.TextSize = 30
382
383OpenTP_2.MouseButton1Down:connect(function()
384warn('xd')
385bin=Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
386bin.Name = "Teleport"
387
388function teleportPlayer(pos)
389
390local player = game.Players.LocalPlayer
391if player == nil or player.Character == nil then return end
392
393local char = player.Character
394
395char:MoveTo(pos)
396
397end
398
399
400enabled = true
401function onButton1Down(mouse)
402if not enabled then
403return
404end
405
406local player = game.Players.LocalPlayer
407if player == nil then return end
408local cf = mouse.Hit
409teleportPlayer(cf.p)
410
411end
412
413function onSelected(mouse)
414mouse.Button1Down:connect(function() onButton1Down(mouse) end)
415end
416
417bin.Selected:connect(onSelected)
418
419end)
420RAW Paste Data
421DaHoodGui = Instance.new("ScreenGui")
422OpenButton = Instance.new("TextButton")
423CloseButton = Instance.new("TextButton")
424Main = Instance.new("Frame")
425Title = Instance.new("TextLabel")
426WalkspeedQ = Instance.new("TextButton")
427NoclipB = Instance.new("TextButton")
428RemoveAll = Instance.new("TextButton")
429GravityON = Instance.new("TextButton")
430Godmode = Instance.new("TextButton")
431GravityOFF = Instance.new("TextButton")
432BTools = Instance.new("TextButton")
433InfiniteJump = Instance.new("TextButton")
434InputPlayer = Instance.new("TextBox")
435GotoPlayer = Instance.new("TextButton")
436local OpenTP_2 = Instance.new("TextButton")
437local CloseFAST = Instance.new("TextButton")
438local EspStatus = Instance.new("TextLabel")
439local st1 = Instance.new("TextLabel")
440local st1_2 = Instance.new("TextLabel")
441local st1_3 = Instance.new("TextLabel")
442local Name = Instance.new("TextLabel")
443local Move = Instance.new("Frame")
444
445DaHoodGui.Name = "Da Hood Gui"
446DaHoodGui.Parent = game.CoreGui
447
448OpenButton.Name = "OpenButton"
449OpenButton.Parent = DaHoodGui
450OpenButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
451OpenButton.BorderSizePixel = 0
452OpenButton.Position = UDim2.new(0, 0, 0.640625, 0)
453OpenButton.Size = UDim2.new(0, 139, 0, 50)
454OpenButton.Font = Enum.Font.Cartoon
455OpenButton.FontSize = Enum.FontSize.Size14
456OpenButton.Text = "OPEN"
457OpenButton.TextColor3 = Color3.new(1, 1, 1)
458OpenButton.TextScaled = true
459OpenButton.TextSize = 14
460OpenButton.TextWrapped = true
461OpenButton.MouseButton1Down:connect(function()
462Main.Visible = true
463CloseButton.Visible = true
464OpenButton.Visible = false
465end)
466
467CloseButton.Name = "CloseButton"
468CloseButton.Parent = DaHoodGui
469CloseButton.Visible = false
470CloseButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
471CloseButton.BorderSizePixel = 0
472CloseButton.Position = UDim2.new(0, 0, 0.640625, 0)
473CloseButton.Size = UDim2.new(0, 139, 0, 50)
474CloseButton.Font = Enum.Font.Cartoon
475CloseButton.FontSize = Enum.FontSize.Size14
476CloseButton.Text = "CLOSE"
477CloseButton.TextColor3 = Color3.new(1, 1, 1)
478CloseButton.TextScaled = true
479CloseButton.TextSize = 14
480CloseButton.TextWrapped = true
481CloseButton.MouseButton1Down:connect(function()
482Main.Visible = false
483CloseButton.Visible = false
484OpenButton.Visible = true
485end)
486
487Main.Name = "Main"
488Main.Parent = DaHoodGui
489Main.Draggable = true
490Main.Active = true
491Main.Visible = false
492Main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
493Main.BorderSizePixel = 0
494Main.BackgroundTransparency = 0.69999998807907
495Main.Position = UDim2.new(0.187782809, 0, 0.0809327811, 0)
496Main.Size = UDim2.new(0, 652, 0, 500)
497
498Title.Name = "Title"
499Title.Parent = Main
500Title.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
501Title.BorderSizePixel = 0
502Title.Size = UDim2.new(0, 652, 0, 50)
503Title.Font = Enum.Font.SourceSansBold
504Title.FontSize = Enum.FontSize.Size48
505Title.Text = "Da Hood Gui | Created by Mythitem."
506Title.TextColor3 = Color3.new(1, 1, 1)
507Title.TextSize = 40
508Title.TextWrapped = true
509
510WalkspeedQ.Name = "WalkspeedQ"
511WalkspeedQ.Parent = Main
512WalkspeedQ.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
513WalkspeedQ.BorderSizePixel = 0
514WalkspeedQ.Position = UDim2.new(0.0178603820, 0, 0.112641335, 0)
515WalkspeedQ.Size = UDim2.new(0, 300, 0, 50)
516WalkspeedQ.Font = Enum.Font.Bodoni
517WalkspeedQ.FontSize = Enum.FontSize.Size32
518WalkspeedQ.Text = "SpeedHax [Q]"
519WalkspeedQ.TextColor3 = Color3.new(1, 1, 1)
520WalkspeedQ.TextSize = 30
521WalkspeedQ.MouseButton1Down:connect(function()
522local walkspeedplayer = game:GetService("Players").LocalPlayer
523local walkspeedmouse = walkspeedplayer:GetMouse()
524
525local walkspeedenabled = false
526
527function x_walkspeed(key)
528if (key == "q") then
529if walkspeedenabled == false then
530_G.WS = 200;
531local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
532Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
533Humanoid.WalkSpeed = _G.WS;
534end)
535Humanoid.WalkSpeed = _G.WS;
536
537walkspeedenabled = true
538elseif walkspeedenabled == true then
539_G.WS = 20;
540local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
541Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
542Humanoid.WalkSpeed = _G.WS;
543end)
544Humanoid.WalkSpeed = _G.WS;
545
546walkspeedenabled = false
547end
548end
549end
550
551walkspeedmouse.KeyDown:connect(x_walkspeed)
552
553end)
554
555NoclipB.Name = "NoclipB"
556NoclipB.Parent = Main
557NoclipB.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
558NoclipB.BorderSizePixel = 0
559NoclipB.Position = UDim2.new(0.0178603820, 0, 0.212641335, 0)
560NoclipB.Size = UDim2.new(0, 300, 0, 50)
561NoclipB.Font = Enum.Font.Bodoni
562NoclipB.FontSize = Enum.FontSize.Size32
563NoclipB.Text = "Noclip [B]"
564NoclipB.TextColor3 = Color3.new(1, 1, 1)
565NoclipB.TextSize = 30
566NoclipB.MouseButton1Down:connect(function()
567
568local noclipplayer = game:GetService("Players").LocalPlayer
569local noclipmouse = noclipplayer:GetMouse()
570
571local donoclip = false
572local noclip = false
573
574function b_noclip(key)
575if (key == "b") then
576if noclip == false then
577donoclip = true
578
579noclip = true
580elseif noclip == true then
581donoclip = false
582
583noclip = false
584end
585end
586end
587
588noclipmouse.KeyDown:connect(b_noclip)
589
590game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
591if obj ~= workspace.Terrain then
592if donoclip == true then
593obj.CanCollide = false
594else
595obj.CanCollide = true
596end
597end
598end)
599end)
600
601GravityON.Name = "Gravity ON"
602GravityON.Parent = Main
603GravityON.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
604GravityON.BorderSizePixel = 0
605GravityON.Position = UDim2.new(0.0178603820, 0, 0.312641335, 0)
606GravityON.Size = UDim2.new(0, 300, 0, 50)
607GravityON.Font = Enum.Font.Bodoni
608GravityON.FontSize = Enum.FontSize.Size32
609GravityON.Text = "Gravity: ON"
610GravityON.TextColor3 = Color3.new(1, 1, 1)
611GravityON.TextSize = 30
612GravityON.MouseButton1Down:connect(function()
613game.Workspace.Gravity = 196.2
614GravityOFF.Visible = true
615GravityON.Visible = false
616end)
617
618Godmode.Name = "Godmode-Sorta Works"
619Godmode.Parent = Main
620Godmode.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
621Godmode.BorderSizePixel = 0
622Godmode.Position = UDim2.new(0.0178603820, 0, 0.412641335, 0)
623Godmode.Size = UDim2.new(0, 300, 0, 50)
624Godmode.Font = Enum.Font.Bodoni
625Godmode.FontSize = Enum.FontSize.Size32
626Godmode.Text = "Godmode-Sorta Works"
627Godmode.TextColor3 = Color3.new(1, 1, 1)
628Godmode.TextSize = 30
629Godmode.MouseButton1Down:connect(function()
630game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
631local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
632l.Parent = game:GetService("Players").LocalPlayer.Character
633l.Name = "Humanoid"
634wait(0.1)
635game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
636game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
637game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
638wait(0.1)
639game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
640game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
641end)
642
643GravityOFF.Name = "Gravity OFF"
644GravityOFF.Parent = Main
645GravityOFF.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
646GravityOFF.BorderSizePixel = 0
647GravityOFF.Position = UDim2.new(0.0178603820, 0, 0.512641335, 0)
648GravityOFF.Size = UDim2.new(0, 300, 0, 50)
649GravityOFF.Font = Enum.Font.Bodoni
650GravityOFF.FontSize = Enum.FontSize.Size32
651GravityOFF.Text = "Gravity: OFF"
652GravityOFF.TextColor3 = Color3.new(1, 1, 1)
653GravityOFF.TextSize = 30
654GravityOFF.MouseButton1Down:connect(function()
655game.Workspace.Gravity = 35
656GravityOFF.Visible = false
657GravityON.Visible = true
658end)
659
660BTools.Name = "BTools"
661BTools.Parent = Main
662BTools.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
663BTools.BorderSizePixel = 0
664BTools.Position = UDim2.new(0.0178603820, 0, 0.612641335, 0)
665BTools.Size = UDim2.new(0, 300, 0, 50)
666BTools.Font = Enum.Font.Bodoni
667BTools.FontSize = Enum.FontSize.Size32
668BTools.Text = "BTools"
669BTools.TextColor3 = Color3.new(1, 1, 1)
670BTools.TextSize = 30
671BTools.MouseButton1Down:connect(function()
672game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
673for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
674 if child.ClassName == "Part" then
675 child.Locked = false
676 end
677 if child.ClassName == "MeshPart" then
678 child.Locked = false
679 end
680 if child.ClassName == "UnionOperation" then
681 child.Locked = false
682 end
683 if child.ClassName == "Model" then
684 for index, chil in pairs(child:GetChildren()) do
685 if chil.ClassName == "Part" then
686 chil.Locked = false
687 end
688 if chil.ClassName == "MeshPart" then
689 chil.Locked = false
690 end
691 if chil.ClassName == "UnionOperation" then
692 chil.Locked = false
693 end
694 if chil.ClassName == "Model" then
695 for index, childe in pairs(chil:GetChildren()) do
696 if childe.ClassName == "Part" then
697 childe.Locked = false
698 end
699 if childe.ClassName == "MeshPart" then
700 childe.Locked = false
701 end
702 if childe.ClassName == "UnionOperation" then
703 childe.Locked = false
704 end
705 if childe.ClassName == "Model" then
706 for index, childeo in pairs(childe:GetChildren()) do
707 if childeo.ClassName == "Part" then
708 childeo.Locked = false
709 end
710 if childeo.ClassName == "MeshPart" then
711 childeo.Locked = false
712 end
713 if childeo.ClassName == "UnionOperation" then
714 childeo.Locked = false
715 end
716 if childeo.ClassName == "Model" then
717 end
718 end
719 end
720 end
721 end
722 end
723 end
724end
725c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
726c.BinType = Enum.BinType.Hammer
727c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
728c.BinType = Enum.BinType.Clone
729c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
730c.BinType = Enum.BinType.Grab
731end)
732
733InfiniteJump.Name = "Infinite Jump"
734InfiniteJump.Parent = Main
735InfiniteJump.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
736InfiniteJump.BorderSizePixel = 0
737InfiniteJump.Position = UDim2.new(0.0178603820, 0, 0.712641335, 0)
738InfiniteJump.Size = UDim2.new(0, 300, 0, 50)
739InfiniteJump.Font = Enum.Font.Bodoni
740InfiniteJump.FontSize = Enum.FontSize.Size32
741InfiniteJump.Text = "Infinite Jump"
742InfiniteJump.TextColor3 = Color3.new(1, 1, 1)
743InfiniteJump.TextSize = 30
744InfiniteJump.MouseButton1Down:connect(function()
745game:GetService("UserInputService").JumpRequest:connect(function()
746game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
747end)
748end)
749
750InputPlayer.Name = "InputPlayer"
751InputPlayer.Parent = Main
752InputPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
753InputPlayer.BorderSizePixel = 0
754InputPlayer.Position = UDim2.new(0.0178603820, 0, 0.812641335, 0)
755InputPlayer.Size = UDim2.new(0, 300, 0, 50)
756InputPlayer.Font = Enum.Font.Cartoon
757InputPlayer.FontSize = Enum.FontSize.Size14
758InputPlayer.Text = "Player"
759InputPlayer.TextColor3 = Color3.new(1, 1, 1)
760InputPlayer.TextScaled = true
761InputPlayer.TextSize = 14
762InputPlayer.TextWrapped = true
763
764GotoPlayer.Name = "Goto Player"
765GotoPlayer.Parent = Main
766GotoPlayer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
767GotoPlayer.BorderSizePixel = 0
768GotoPlayer.Position = UDim2.new(0.478603820, 0, 0.812641335, 0)
769GotoPlayer.Size = UDim2.new(0, 300, 0, 50)
770GotoPlayer.Font = Enum.Font.Bodoni
771GotoPlayer.FontSize = Enum.FontSize.Size32
772GotoPlayer.Text = "Goto Player"
773GotoPlayer.TextColor3 = Color3.new(1, 1, 1)
774GotoPlayer.TextSize = 30
775GotoPlayer.MouseButton1Down:connect(function()
776local tp_namedplayer = InputPlayer.Text
777local tp_player = game:GetService("Players")[tp_namedplayer]
778local PLR = game:GetService("Players").LocalPlayer
779local p = InputPlayer.Text
780
781if tp_player then
782for i = 1,20 do
783wait()
784PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
785end
786end
787end)
788
789OpenTP_2.Name = "OpenTP"
790OpenTP_2.Parent = Main
791OpenTP_2.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
792OpenTP_2.BorderSizePixel = 0
793OpenTP_2.Position = UDim2.new(0.478603820, 0, 0.112641335, 0)
794OpenTP_2.Size = UDim2.new(0, 300, 0, 50)
795OpenTP_2.Font = Enum.Font.Bodoni
796OpenTP_2.Text = "Click to TP"
797OpenTP_2.TextColor3 = Color3.new(1, 1, 1)
798OpenTP_2.TextSize = 30
799
800OpenTP_2.MouseButton1Down:connect(function()
801warn('xd')
802bin=Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
803bin.Name = "Teleport"
804
805function teleportPlayer(pos)
806
807local player = game.Players.LocalPlayer
808if player == nil or player.Character == nil then return end
809
810local char = player.Character
811
812char:MoveTo(pos)
813
814end
815
816
817enabled = true
818function onButton1Down(mouse)
819if not enabled then
820return
821end
822
823local player = game.Players.LocalPlayer
824if player == nil then return end
825local cf = mouse.Hit
826teleportPlayer(cf.p)
827
828end
829
830function onSelected(mouse)
831mouse.Button1Down:connect(function() onButton1Down(mouse) end)
832end
833
834bin.Selected:connect(onSelected)
835
836end)
837create new paste / syntax languages / archive / faq / tools / night mode / api / scraping api
838privacy statement / cookies policy / terms of service / security disclosure / dmca / report abuse / contact
839