· 5 years ago · Jul 25, 2020, 04:32 AM
1-- Gui to Lua
2-- Version: 3
3
4-- Instances:
5
6local ScreenGui = Instance.new("ScreenGui")
7local RedXGUI = Instance.new("Frame")
8local TextLabel = Instance.new("TextLabel")
9local TextLabel_2 = Instance.new("TextLabel")
10local speed = Instance.new("TextButton")
11local gravity = Instance.new("TextButton")
12local clickTP = Instance.new("TextButton")
13local btools = Instance.new("TextButton")
14local autocash = Instance.new("TextButton")
15local fling = Instance.new("TextButton")
16local fps = Instance.new("TextButton")
17local speed_2 = Instance.new("TextButton")
18local TextLabel_3 = Instance.new("TextLabel")
19local close = Instance.new("TextButton")
20local TextLabel_4 = Instance.new("TextLabel")
21local open = Instance.new("TextButton")
22
23--Properties:
24
25ScreenGui.Parent = game.CoreGui
26ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
27
28RedXGUI.Name = "RedXGUI"
29RedXGUI.Parent = ScreenGui
30RedXGUI.BackgroundColor3 = Color3.new(0.666667, 1, 1)
31RedXGUI.BorderSizePixel = 4
32RedXGUI.Position = UDim2.new(0.465026885, 0, 0.275590599, 0)
33RedXGUI.Size = UDim2.new(0, 535, 0, 338)
34RedXGUI.Visible = false
35RedXGUI.Active = true
36RedXGUI.Draggable = true
37
38TextLabel.Parent = RedXGUI
39TextLabel.BackgroundColor3 = Color3.new(0.435294, 0.168627, 0.52549)
40TextLabel.BorderColor3 = Color3.new(0, 0, 0)
41TextLabel.BorderSizePixel = 3
42TextLabel.Position = UDim2.new(0.0200752541, 0, -0.0384615362, 0)
43TextLabel.Size = UDim2.new(0, 200, 0, 50)
44TextLabel.Font = Enum.Font.SourceSans
45TextLabel.Text = "REDX ADOPTME- TURNINGGLOBE"
46TextLabel.TextColor3 = Color3.new(0, 0, 0)
47TextLabel.TextSize = 14
48
49TextLabel_2.Parent = RedXGUI
50TextLabel_2.BackgroundColor3 = Color3.new(0.262745, 0.0666667, 0.435294)
51TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
52TextLabel_2.BorderSizePixel = 3
53TextLabel_2.Position = UDim2.new(-0.287850469, 0, 0.514792919, 0)
54TextLabel_2.Rotation = 90
55TextLabel_2.Size = UDim2.new(0, 289, 0, 11)
56TextLabel_2.Font = Enum.Font.SourceSans
57TextLabel_2.Text = ""
58TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
59TextLabel_2.TextSize = 14
60
61speed.Name = "speed"
62speed.Parent = RedXGUI
63speed.BackgroundColor3 = Color3.new(0.666667, 0, 0)
64speed.BackgroundTransparency = 0.5
65speed.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
66speed.BorderSizePixel = 3
67speed.Position = UDim2.new(0.0186915882, 0, 0.189349115, 0)
68speed.Size = UDim2.new(0, 137, 0, 31)
69speed.Font = Enum.Font.Gotham
70speed.Text = "SPEED[X]"
71speed.TextColor3 = Color3.new(0, 0, 0)
72speed.TextScaled = true
73speed.TextSize = 14
74speed.TextWrapped = true
75speed.MouseButton1Down:connect(function()
76 local walkspeedplayer = game:GetService("Players").LocalPlayer
77 local walkspeedmouse = walkspeedplayer:GetMouse()
78
79 local walkspeedenabled = false
80
81 function x_walkspeed(key)
82 if (key == "x") then
83 if walkspeedenabled == false then
84 _G.WS = 200;
85 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
86 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
87 Humanoid.WalkSpeed = _G.WS;
88 end)
89 Humanoid.WalkSpeed = _G.WS;
90
91 walkspeedenabled = true
92 elseif walkspeedenabled == true then
93 _G.WS = 20;
94 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
95 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
96 Humanoid.WalkSpeed = _G.WS;
97 end)
98 Humanoid.WalkSpeed = _G.WS;
99
100 walkspeedenabled = false
101 end
102 end
103 end
104
105 walkspeedmouse.KeyDown:connect(x_walkspeed)
106
107end)
108
109gravity.Name = "gravity"
110gravity.Parent = RedXGUI
111gravity.BackgroundColor3 = Color3.new(0.666667, 0, 0)
112gravity.BackgroundTransparency = 0.5
113gravity.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
114gravity.BorderSizePixel = 3
115gravity.Position = UDim2.new(0.355140209, 0, 0.189349115, 0)
116gravity.Size = UDim2.new(0, 137, 0, 31)
117gravity.Font = Enum.Font.Gotham
118gravity.Text = "GRAVITY"
119gravity.TextColor3 = Color3.new(0, 0, 0)
120gravity.TextScaled = true
121gravity.TextSize = 14
122gravity.TextWrapped = true
123gravity.MouseButton1Down:connect(function()
124if Gravity == true then
125Gravity = false
126game.workspace.Gravity = 196.2
127else
128Gravity = true
129game.workspace.Gravity = 45
130end
131end)
132
133clickTP.Name = "clickTP"
134clickTP.Parent = RedXGUI
135clickTP.BackgroundColor3 = Color3.new(0.666667, 0, 0)
136clickTP.BackgroundTransparency = 0.5
137clickTP.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
138clickTP.BorderSizePixel = 3
139clickTP.Position = UDim2.new(0.693457961, 0, 0.189349115, 0)
140clickTP.Size = UDim2.new(0, 137, 0, 31)
141clickTP.Font = Enum.Font.Gotham
142clickTP.Text = "CLICKTP[N]"
143clickTP.TextColor3 = Color3.new(0, 0, 0)
144clickTP.TextScaled = true
145clickTP.TextSize = 14
146clickTP.TextWrapped = true
147clickTP.MouseButton1Click:Connect(function()
148 toggle = true
149 togglekey = "n" --Key that you will use to toggle the on and off
150 killkey = "k" --Key that you will use to kill a player
151 function Hint(txt)
152 local b = Instance.new('Hint', workspace)
153 b.Text = txt
154 wait(2)
155 b:Destroy()
156 end
157 Local = game:GetService('Players').LocalPlayer
158 Mouse = Local:GetMouse()
159 Mouse.Button1Down:connect(function()
160 pcall(function()
161 if toggle then
162 Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
163 end
164 end)
165 end)
166 Mouse.KeyDown:connect(function(key)
167 if key == togglekey then
168 if toggle then
169 toggle = false
170 Hint('Turned Off!')
171 print ('Turned Off!')
172 else
173 toggle = true
174 Hint('Turned On!')
175 print ('Turned On!')
176 end
177 elseif key == killkey then
178 if toggle then
179 pcall(function()
180 Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
181 Hint('Killed ' .. Mouse.Target.Parent.Name)
182 end)
183 end
184 end
185 end)
186end)
187
188btools.Name = "btools"
189btools.Parent = RedXGUI
190btools.BackgroundColor3 = Color3.new(0.666667, 0, 0)
191btools.BackgroundTransparency = 0.5
192btools.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
193btools.BorderSizePixel = 3
194btools.Position = UDim2.new(0.0186915882, 0, 0.423076928, 0)
195btools.Size = UDim2.new(0, 137, 0, 31)
196btools.Font = Enum.Font.Gotham
197btools.Text = "BTOOLS"
198btools.TextColor3 = Color3.new(0, 0, 0)
199btools.TextScaled = true
200btools.TextSize = 14
201btools.TextWrapped = true
202btools.MouseButton1Down:connect(function()
203 game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
204for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
205 if child.ClassName == "Part" then
206 child.Locked = false
207 end
208 if child.ClassName == "MeshPart" then
209 child.Locked = false
210 end
211 if child.ClassName == "UnionOperation" then
212 child.Locked = false
213 end
214 if child.ClassName == "Model" then
215 for index, chil in pairs(child:GetChildren()) do
216 if chil.ClassName == "Part" then
217 chil.Locked = false
218 end
219 if chil.ClassName == "MeshPart" then
220 chil.Locked = false
221 end
222 if chil.ClassName == "UnionOperation" then
223 chil.Locked = false
224 end
225 if chil.ClassName == "Model" then
226 for index, childe in pairs(chil:GetChildren()) do
227 if childe.ClassName == "Part" then
228 childe.Locked = false
229 end
230 if childe.ClassName == "MeshPart" then
231 childe.Locked = false
232 end
233 if childe.ClassName == "UnionOperation" then
234 childe.Locked = false
235 end
236 if childe.ClassName == "Model" then
237 for index, childeo in pairs(childe:GetChildren()) do
238 if childeo.ClassName == "Part" then
239 childeo.Locked = false
240 end
241 if childeo.ClassName == "MeshPart" then
242 childeo.Locked = false
243 end
244 if childeo.ClassName == "UnionOperation" then
245 childeo.Locked = false
246 end
247 if childeo.ClassName == "Model" then
248 end
249 end
250 end
251 end
252 end
253 end
254 end
255end
256c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
257c.BinType = Enum.BinType.Hammer
258c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
259c.BinType = Enum.BinType.Clone
260c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
261c.BinType = Enum.BinType.Grab
262end)
263
264autocash.Name = "autocash"
265autocash.Parent = RedXGUI
266autocash.BackgroundColor3 = Color3.new(0.666667, 0, 0)
267autocash.BackgroundTransparency = 0.5
268autocash.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
269autocash.BorderSizePixel = 3
270autocash.Position = UDim2.new(0.355140209, 0, 0.423076928, 0)
271autocash.Size = UDim2.new(0, 137, 0, 31)
272autocash.Font = Enum.Font.Gotham
273autocash.Text = "AUTOCASH"
274autocash.TextColor3 = Color3.new(0, 0, 0)
275autocash.TextScaled = true
276autocash.TextSize = 14
277autocash.TextWrapped = true
278
279fling.Name = "fling"
280fling.Parent = RedXGUI
281fling.BackgroundColor3 = Color3.new(0.666667, 0, 0)
282fling.BackgroundTransparency = 0.5
283fling.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
284fling.BorderSizePixel = 3
285fling.Position = UDim2.new(0.693457961, 0, 0.423076928, 0)
286fling.Size = UDim2.new(0, 137, 0, 31)
287fling.Font = Enum.Font.Gotham
288fling.Text = "FLINGGUI"
289fling.TextColor3 = Color3.new(0, 0, 0)
290fling.TextScaled = true
291fling.TextSize = 14
292fling.TextWrapped = true
293fling.MouseButton1Click:Connect(function()
294 -- Made By JackMcJagger15
295local FlingKill = Instance.new("ScreenGui")
296local Main = Instance.new("Frame")
297local Label = Instance.new("Frame")
298local Shadow = Instance.new("Frame")
299local StartKill = Instance.new("TextButton")
300local StopKill = Instance.new("TextButton")
301local Instructions = Instance.new("TextLabel")
302local CurrentPower = Instance.new("TextLabel")
303local Recomendation = Instance.new("TextLabel")
304local NameOfGui = Instance.new("TextLabel")
305local Exit = Instance.new("TextButton")
306local UPArrow = Instance.new("TextButton")
307local DownArrow = Instance.new("TextButton")
308
309-- Properties
310
311FlingKill.Name = "Fling/Kill"
312FlingKill.Parent = game.CoreGui
313
314Main.Name = "Main"
315Main.Parent = FlingKill
316Main.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
317Main.BorderSizePixel = 0
318Main.Position = UDim2.new(0.702554762, 0, 0.446640313, 0)
319Main.Size = UDim2.new(0, 217, 0, 233)
320Main.Selectable = true
321Main.Active = true
322Main.Draggable = true
323
324Label.Name = "Label"
325Label.Parent = Main
326Label.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
327Label.BorderSizePixel = 0
328Label.Size = UDim2.new(0, 217, 0, 27)
329
330Shadow.Name = "Shadow"
331Shadow.Parent = Main
332Shadow.BackgroundColor3 = Color3.new(0.67451, 0.694118, 0.705882)
333Shadow.BorderSizePixel = 0
334Shadow.Position = UDim2.new(0, 0, 0.115879826, 0)
335Shadow.Size = UDim2.new(0, 217, 0, 9)
336
337StartKill.Name = "StartKill"
338StartKill.Parent = Main
339StartKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
340StartKill.BorderSizePixel = 0
341StartKill.Position = UDim2.new(0.195852548, 0, 0.227467805, 0)
342StartKill.Size = UDim2.new(0, 126, 0, 23)
343StartKill.Font = Enum.Font.Cartoon
344StartKill.Text = "FE Kill/Fling"
345StartKill.TextColor3 = Color3.new(0, 0, 0)
346StartKill.TextSize = 14
347
348StopKill.Name = "StopKill"
349StopKill.Parent = Main
350StopKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
351StopKill.BorderSizePixel = 0
352StopKill.Position = UDim2.new(0.207373276, 0, 0.38197428, 0)
353StopKill.Size = UDim2.new(0, 124, 0, 23)
354StopKill.Font = Enum.Font.Cartoon
355StopKill.Text = "Stop FE Kill/Fling"
356StopKill.TextColor3 = Color3.new(0, 0, 0)
357StopKill.TextSize = 14
358
359Instructions.Name = "Instructions"
360Instructions.Parent = Main
361Instructions.BackgroundColor3 = Color3.new(1, 1, 1)
362Instructions.BackgroundTransparency = 1
363Instructions.Position = UDim2.new(0.0391705073, 0, 0.549356222, 0)
364Instructions.Size = UDim2.new(0, 200, 0, 32)
365Instructions.Font = Enum.Font.Cartoon
366Instructions.Text = "Just touch someone to watch the fly to their death!"
367Instructions.TextColor3 = Color3.new(0, 0, 0)
368Instructions.TextSize = 14
369Instructions.TextWrapped = true
370
371CurrentPower.Name = "CurrentPower"
372CurrentPower.Parent = Main
373CurrentPower.BackgroundColor3 = Color3.new(1, 1, 1)
374CurrentPower.BackgroundTransparency = 1
375CurrentPower.Position = UDim2.new(0.276497692, 0, 0.686695278, 0)
376CurrentPower.Size = UDim2.new(0, 98, 0, 36)
377CurrentPower.Font = Enum.Font.Cartoon
378CurrentPower.Text = "Current Power = 5"
379CurrentPower.TextColor3 = Color3.new(0, 0, 0)
380CurrentPower.TextSize = 14
381
382Recomendation.Name = "Recomendation"
383Recomendation.Parent = Main
384Recomendation.BackgroundColor3 = Color3.new(1, 1, 1)
385Recomendation.BackgroundTransparency = 1
386Recomendation.Position = UDim2.new(0.0414746553, 0, 0.884120166, 0)
387Recomendation.Size = UDim2.new(0, 200, 0, 21)
388Recomendation.Font = Enum.Font.Cartoon
389Recomendation.Text = "Recommended Power is 5"
390Recomendation.TextColor3 = Color3.new(0, 0, 0)
391Recomendation.TextSize = 14
392
393NameOfGui.Name = "NameOfGui"
394NameOfGui.Parent = Main
395NameOfGui.BackgroundColor3 = Color3.new(1, 1, 1)
396NameOfGui.BackgroundTransparency = 1
397NameOfGui.Position = UDim2.new(0.0806451589, 0, 0, 0)
398NameOfGui.Size = UDim2.new(0, 154, 0, 27)
399NameOfGui.Font = Enum.Font.Cartoon
400NameOfGui.Text = "FE Kill/Fling By JackMcJagger15"
401NameOfGui.TextColor3 = Color3.new(0, 0, 0)
402NameOfGui.TextSize = 14
403
404Exit.Name = "Exit"
405Exit.Parent = Main
406Exit.BackgroundColor3 = Color3.new(1, 1, 1)
407Exit.BackgroundTransparency = 1
408Exit.Position = UDim2.new(0.907834113, 0, 0, 0)
409Exit.Size = UDim2.new(0, 20, 0, 27)
410Exit.Font = Enum.Font.Cartoon
411Exit.Text = "X"
412Exit.TextColor3 = Color3.new(0, 0, 0)
413Exit.TextSize = 14
414
415UPArrow.Name = "UPArrow"
416UPArrow.Parent = Main
417UPArrow.BackgroundColor3 = Color3.new(1, 1, 1)
418UPArrow.BackgroundTransparency = 1
419UPArrow.Position = UDim2.new(0.0783410147, 0, 0.716738224, 0)
420UPArrow.Size = UDim2.new(0, 26, 0, 23)
421UPArrow.Font = Enum.Font.Cartoon
422UPArrow.Text = "Up"
423UPArrow.TextColor3 = Color3.new(0, 0, 0)
424UPArrow.TextSize = 12
425UPArrow.TextWrapped = true
426
427DownArrow.Name = "DownArrow"
428DownArrow.Parent = Main
429DownArrow.BackgroundColor3 = Color3.new(1, 1, 1)
430DownArrow.BackgroundTransparency = 1
431DownArrow.Position = UDim2.new(0.792626739, 0, 0.714592278, 0)
432DownArrow.Size = UDim2.new(0, 26, 0, 23)
433DownArrow.Font = Enum.Font.Cartoon
434DownArrow.Text = "Down"
435DownArrow.TextColor3 = Color3.new(0, 0, 0)
436DownArrow.TextSize = 12
437DownArrow.TextWrapped = true
438
439power = 500
440active = false
441local val = Instance.new("IntValue")
442val.Name = "Number"
443val.Parent = game.Players.LocalPlayer
444val.Value = 5
445
446Exit.MouseButton1Click:connect(function()
447FlingKill.Enabled = false
448end)
449
450StartKill.MouseButton1Click:connect(function()
451game:GetService('RunService').Stepped:connect(function()
452if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
453game.Players.LocalPlayer.Character.Head.CanCollide = false
454game.Players.LocalPlayer.Character.Torso.CanCollide = false
455game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
456game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
457else
458if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
459game.Players.LocalPlayer.Character.Head.CanCollide = false
460game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
461game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
462game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
463end
464end
465end)
466wait(.1)
467local bambam = Instance.new("BodyThrust")
468bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
469bambam.Force = Vector3.new(power,0,power)
470bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
471end)
472
473StopKill.MouseButton1Click:connect(function()
474active = false
475game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()
476end)
477
478UPArrow.MouseButton1Click:connect(function()
479power = power + 100
480game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value + 1
481CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
482end)
483
484DownArrow.MouseButton1Click:connect(function()
485power = power - 100
486game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value - 1
487CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
488end)
489end)
490
491fps.Name = "fps"
492fps.Parent = RedXGUI
493fps.BackgroundColor3 = Color3.new(0.666667, 0, 0)
494fps.BackgroundTransparency = 0.5
495fps.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
496fps.BorderSizePixel = 3
497fps.Position = UDim2.new(0.0186915882, 0, 0.636094689, 0)
498fps.Size = UDim2.new(0, 137, 0, 31)
499fps.Font = Enum.Font.SourceSans
500fps.Text = "FPSBOOSTER"
501fps.TextColor3 = Color3.new(0, 0, 0)
502fps.TextScaled = true
503fps.TextSize = 14
504fps.TextWrapped = true
505fps.MouseButton1Click:Connect(function()
506 for _,v in pairs(workspace:GetDescendants()) do
507if v.ClassName == "Part"
508or v.ClassName == "SpawnLocation"
509or v.ClassName == "WedgePart"
510or v.ClassName == "Terrain"
511or v.ClassName == "MeshPart" then
512v.Material = "Plastic"
513end
514end
515
516for _,v in pairs(workspace:GetDescendants()) do
517if v.ClassName == "Decal"
518or v.ClassName == "Texture" then
519v:Destroy()
520end
521end
522end)
523
524speed_2.Name = "speed"
525speed_2.Parent = RedXGUI
526speed_2.BackgroundColor3 = Color3.new(0.666667, 0, 0)
527speed_2.BackgroundTransparency = 0.5
528speed_2.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
529speed_2.BorderSizePixel = 3
530speed_2.Position = UDim2.new(0.355140179, 0, 0.636094689, 0)
531speed_2.Size = UDim2.new(0, 318, 0, 31)
532speed_2.Font = Enum.Font.Gotham
533speed_2.Text = "FLY[Q]"
534speed_2.TextColor3 = Color3.new(0, 0, 0)
535speed_2.TextScaled = true
536speed_2.TextSize = 14
537speed_2.TextWrapped = true
538speed_2.MouseButton1Down:connect(function()
539 local Enabled = false
540 local Camera = game.Workspace.CurrentCamera
541 local Player = game:GetService("Players").LocalPlayer
542 local Input = game:GetService("UserInputService")
543 local Forward = false
544 local Back = false
545 local Left = false
546 local Right = false
547 local Up = false
548 local Down = false
549
550 local function SetPlayer()
551 for i,v in pairs(Player.Character:GetChildren()) do
552 pcall(function()
553 v.Anchored = not v.Anchored
554 end)
555 end
556 end
557
558 Input.InputBegan:Connect(function(Key,IsChat)
559 if IsChat then return end
560 if Key.KeyCode == Enum.KeyCode.Q then
561 Enabled = not Enabled
562 SetPlayer()
563 end
564 if Key.KeyCode == Enum.KeyCode.W then
565 Forward = true
566 end
567 if Key.KeyCode == Enum.KeyCode.S then
568 Back = true
569 end
570 if Key.KeyCode == Enum.KeyCode.A then
571 Left = true
572 end
573 if Key.KeyCode == Enum.KeyCode.D then
574 Right = true
575 end
576 if Key.KeyCode == Enum.KeyCode.Space then
577 Up = true
578 end
579 if Key.KeyCode == Enum.KeyCode.LeftControl then
580 Down = true
581 end
582 end)
583
584 Input.InputEnded:Connect(function(Key,IsChat)
585 if IsChat then return end
586 if Key.KeyCode == Enum.KeyCode.W then
587 Forward = false
588 end
589 if Key.KeyCode == Enum.KeyCode.S then
590 Back = false
591 end
592 if Key.KeyCode == Enum.KeyCode.A then
593 Left = false
594 end
595 if Key.KeyCode == Enum.KeyCode.D then
596 Right = false
597 end
598 if Key.KeyCode == Enum.KeyCode.Space then
599 Up = false
600 end
601 if Key.KeyCode == Enum.KeyCode.LeftControl then
602 Down = false
603 end
604 end)
605
606 while game:GetService("RunService").RenderStepped:Wait() do
607 if Enabled then
608 pcall(function()
609 if Forward then
610 Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
611 end
612 if Back then
613 Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
614 end
615 if Left then
616 Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
617 end
618 if Right then
619 Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
620 end
621 if Up then
622 Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
623 end
624 if Down then
625 Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
626 end
627 end)
628 end
629 end
630end)
631
632TextLabel_3.Parent = RedXGUI
633TextLabel_3.BackgroundColor3 = Color3.new(0.317647, 0.156863, 0.458824)
634TextLabel_3.BorderSizePixel = 3
635TextLabel_3.Position = UDim2.new(0.0672897175, 0, 0.547337294, 0)
636TextLabel_3.Rotation = 90
637TextLabel_3.Size = UDim2.new(0, 261, 0, 6)
638TextLabel_3.Font = Enum.Font.SourceSans
639TextLabel_3.Text = ""
640TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
641TextLabel_3.TextSize = 14
642
643close.Name = "close"
644close.Parent = RedXGUI
645close.BackgroundColor3 = Color3.new(0.34902, 0, 0.52549)
646close.BorderSizePixel = 3
647close.Position = UDim2.new(0.893457949, 0, 0.0384615399, 0)
648close.Size = UDim2.new(0, 30, 0, 24)
649close.Font = Enum.Font.SourceSans
650close.Text = "X"
651close.TextColor3 = Color3.new(0, 0, 0)
652close.TextScaled = true
653close.TextSize = 14
654close.TextWrapped = true
655close.MouseButton1Down:connect(function()
656RedXGUI.Visible = false
657open.Visible = true
658end)
659
660TextLabel_4.Parent = RedXGUI
661TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
662TextLabel_4.BackgroundTransparency = 1
663TextLabel_4.Position = UDim2.new(0.428359777, 0, 0.794960082, 0)
664TextLabel_4.Size = UDim2.new(0, 245, 0, 55)
665TextLabel_4.Font = Enum.Font.Gotham
666TextLabel_4.Text = "SUBSCRIBE TO TURNINGLOBERB ON YOUTUBE"
667TextLabel_4.TextColor3 = Color3.new(0, 0, 0)
668TextLabel_4.TextScaled = true
669TextLabel_4.TextSize = 14
670TextLabel_4.TextWrapped = true
671
672open.Name = "open"
673open.Parent = ScreenGui
674open.BackgroundColor3 = Color3.new(0.666667, 1, 1)
675open.BorderSizePixel = 3
676open.Position = UDim2.new(0.00538047682, 0, 0.412598431, 0)
677open.Size = UDim2.new(0, 75, 0, 31)
678open.Font = Enum.Font.Gotham
679open.Text = "OPEN"
680open.TextColor3 = Color3.new(0, 0, 0)
681open.TextScaled = true
682open.TextSize = 14
683open.TextWrapped = true
684open.MouseButton1Down:connect(function()
685RedXGUI.Visible = true
686open.Visible = false
687end)
688RAW Paste Data
689-- Gui to Lua
690-- Version: 3
691
692-- Instances:
693
694local ScreenGui = Instance.new("ScreenGui")
695local RedXGUI = Instance.new("Frame")
696local TextLabel = Instance.new("TextLabel")
697local TextLabel_2 = Instance.new("TextLabel")
698local speed = Instance.new("TextButton")
699local gravity = Instance.new("TextButton")
700local clickTP = Instance.new("TextButton")
701local btools = Instance.new("TextButton")
702local autocash = Instance.new("TextButton")
703local fling = Instance.new("TextButton")
704local fps = Instance.new("TextButton")
705local speed_2 = Instance.new("TextButton")
706local TextLabel_3 = Instance.new("TextLabel")
707local close = Instance.new("TextButton")
708local TextLabel_4 = Instance.new("TextLabel")
709local open = Instance.new("TextButton")
710
711--Properties:
712
713ScreenGui.Parent = game.CoreGui
714ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
715
716RedXGUI.Name = "RedXGUI"
717RedXGUI.Parent = ScreenGui
718RedXGUI.BackgroundColor3 = Color3.new(0.666667, 1, 1)
719RedXGUI.BorderSizePixel = 4
720RedXGUI.Position = UDim2.new(0.465026885, 0, 0.275590599, 0)
721RedXGUI.Size = UDim2.new(0, 535, 0, 338)
722RedXGUI.Visible = false
723RedXGUI.Active = true
724RedXGUI.Draggable = true
725
726TextLabel.Parent = RedXGUI
727TextLabel.BackgroundColor3 = Color3.new(0.435294, 0.168627, 0.52549)
728TextLabel.BorderColor3 = Color3.new(0, 0, 0)
729TextLabel.BorderSizePixel = 3
730TextLabel.Position = UDim2.new(0.0200752541, 0, -0.0384615362, 0)
731TextLabel.Size = UDim2.new(0, 200, 0, 50)
732TextLabel.Font = Enum.Font.SourceSans
733TextLabel.Text = "REDX ADOPTME- TURNINGGLOBE"
734TextLabel.TextColor3 = Color3.new(0, 0, 0)
735TextLabel.TextSize = 14
736
737TextLabel_2.Parent = RedXGUI
738TextLabel_2.BackgroundColor3 = Color3.new(0.262745, 0.0666667, 0.435294)
739TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
740TextLabel_2.BorderSizePixel = 3
741TextLabel_2.Position = UDim2.new(-0.287850469, 0, 0.514792919, 0)
742TextLabel_2.Rotation = 90
743TextLabel_2.Size = UDim2.new(0, 289, 0, 11)
744TextLabel_2.Font = Enum.Font.SourceSans
745TextLabel_2.Text = ""
746TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
747TextLabel_2.TextSize = 14
748
749speed.Name = "speed"
750speed.Parent = RedXGUI
751speed.BackgroundColor3 = Color3.new(0.666667, 0, 0)
752speed.BackgroundTransparency = 0.5
753speed.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
754speed.BorderSizePixel = 3
755speed.Position = UDim2.new(0.0186915882, 0, 0.189349115, 0)
756speed.Size = UDim2.new(0, 137, 0, 31)
757speed.Font = Enum.Font.Gotham
758speed.Text = "SPEED[X]"
759speed.TextColor3 = Color3.new(0, 0, 0)
760speed.TextScaled = true
761speed.TextSize = 14
762speed.TextWrapped = true
763speed.MouseButton1Down:connect(function()
764 local walkspeedplayer = game:GetService("Players").LocalPlayer
765 local walkspeedmouse = walkspeedplayer:GetMouse()
766
767 local walkspeedenabled = false
768
769 function x_walkspeed(key)
770 if (key == "x") then
771 if walkspeedenabled == false then
772 _G.WS = 200;
773 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
774 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
775 Humanoid.WalkSpeed = _G.WS;
776 end)
777 Humanoid.WalkSpeed = _G.WS;
778
779 walkspeedenabled = true
780 elseif walkspeedenabled == true then
781 _G.WS = 20;
782 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
783 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
784 Humanoid.WalkSpeed = _G.WS;
785 end)
786 Humanoid.WalkSpeed = _G.WS;
787
788 walkspeedenabled = false
789 end
790 end
791 end
792
793 walkspeedmouse.KeyDown:connect(x_walkspeed)
794
795end)
796
797gravity.Name = "gravity"
798gravity.Parent = RedXGUI
799gravity.BackgroundColor3 = Color3.new(0.666667, 0, 0)
800gravity.BackgroundTransparency = 0.5
801gravity.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
802gravity.BorderSizePixel = 3
803gravity.Position = UDim2.new(0.355140209, 0, 0.189349115, 0)
804gravity.Size = UDim2.new(0, 137, 0, 31)
805gravity.Font = Enum.Font.Gotham
806gravity.Text = "GRAVITY"
807gravity.TextColor3 = Color3.new(0, 0, 0)
808gravity.TextScaled = true
809gravity.TextSize = 14
810gravity.TextWrapped = true
811gravity.MouseButton1Down:connect(function()
812if Gravity == true then
813Gravity = false
814game.workspace.Gravity = 196.2
815else
816Gravity = true
817game.workspace.Gravity = 45
818end
819end)
820
821clickTP.Name = "clickTP"
822clickTP.Parent = RedXGUI
823clickTP.BackgroundColor3 = Color3.new(0.666667, 0, 0)
824clickTP.BackgroundTransparency = 0.5
825clickTP.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
826clickTP.BorderSizePixel = 3
827clickTP.Position = UDim2.new(0.693457961, 0, 0.189349115, 0)
828clickTP.Size = UDim2.new(0, 137, 0, 31)
829clickTP.Font = Enum.Font.Gotham
830clickTP.Text = "CLICKTP[N]"
831clickTP.TextColor3 = Color3.new(0, 0, 0)
832clickTP.TextScaled = true
833clickTP.TextSize = 14
834clickTP.TextWrapped = true
835clickTP.MouseButton1Click:Connect(function()
836 toggle = true
837 togglekey = "n" --Key that you will use to toggle the on and off
838 killkey = "k" --Key that you will use to kill a player
839 function Hint(txt)
840 local b = Instance.new('Hint', workspace)
841 b.Text = txt
842 wait(2)
843 b:Destroy()
844 end
845 Local = game:GetService('Players').LocalPlayer
846 Mouse = Local:GetMouse()
847 Mouse.Button1Down:connect(function()
848 pcall(function()
849 if toggle then
850 Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
851 end
852 end)
853 end)
854 Mouse.KeyDown:connect(function(key)
855 if key == togglekey then
856 if toggle then
857 toggle = false
858 Hint('Turned Off!')
859 print ('Turned Off!')
860 else
861 toggle = true
862 Hint('Turned On!')
863 print ('Turned On!')
864 end
865 elseif key == killkey then
866 if toggle then
867 pcall(function()
868 Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
869 Hint('Killed ' .. Mouse.Target.Parent.Name)
870 end)
871 end
872 end
873 end)
874end)
875
876btools.Name = "btools"
877btools.Parent = RedXGUI
878btools.BackgroundColor3 = Color3.new(0.666667, 0, 0)
879btools.BackgroundTransparency = 0.5
880btools.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
881btools.BorderSizePixel = 3
882btools.Position = UDim2.new(0.0186915882, 0, 0.423076928, 0)
883btools.Size = UDim2.new(0, 137, 0, 31)
884btools.Font = Enum.Font.Gotham
885btools.Text = "BTOOLS"
886btools.TextColor3 = Color3.new(0, 0, 0)
887btools.TextScaled = true
888btools.TextSize = 14
889btools.TextWrapped = true
890btools.MouseButton1Down:connect(function()
891 game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
892for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
893 if child.ClassName == "Part" then
894 child.Locked = false
895 end
896 if child.ClassName == "MeshPart" then
897 child.Locked = false
898 end
899 if child.ClassName == "UnionOperation" then
900 child.Locked = false
901 end
902 if child.ClassName == "Model" then
903 for index, chil in pairs(child:GetChildren()) do
904 if chil.ClassName == "Part" then
905 chil.Locked = false
906 end
907 if chil.ClassName == "MeshPart" then
908 chil.Locked = false
909 end
910 if chil.ClassName == "UnionOperation" then
911 chil.Locked = false
912 end
913 if chil.ClassName == "Model" then
914 for index, childe in pairs(chil:GetChildren()) do
915 if childe.ClassName == "Part" then
916 childe.Locked = false
917 end
918 if childe.ClassName == "MeshPart" then
919 childe.Locked = false
920 end
921 if childe.ClassName == "UnionOperation" then
922 childe.Locked = false
923 end
924 if childe.ClassName == "Model" then
925 for index, childeo in pairs(childe:GetChildren()) do
926 if childeo.ClassName == "Part" then
927 childeo.Locked = false
928 end
929 if childeo.ClassName == "MeshPart" then
930 childeo.Locked = false
931 end
932 if childeo.ClassName == "UnionOperation" then
933 childeo.Locked = false
934 end
935 if childeo.ClassName == "Model" then
936 end
937 end
938 end
939 end
940 end
941 end
942 end
943end
944c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
945c.BinType = Enum.BinType.Hammer
946c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
947c.BinType = Enum.BinType.Clone
948c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
949c.BinType = Enum.BinType.Grab
950end)
951
952autocash.Name = "autocash"
953autocash.Parent = RedXGUI
954autocash.BackgroundColor3 = Color3.new(0.666667, 0, 0)
955autocash.BackgroundTransparency = 0.5
956autocash.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
957autocash.BorderSizePixel = 3
958autocash.Position = UDim2.new(0.355140209, 0, 0.423076928, 0)
959autocash.Size = UDim2.new(0, 137, 0, 31)
960autocash.Font = Enum.Font.Gotham
961autocash.Text = "AUTOCASH"
962autocash.TextColor3 = Color3.new(0, 0, 0)
963autocash.TextScaled = true
964autocash.TextSize = 14
965autocash.TextWrapped = true
966
967fling.Name = "fling"
968fling.Parent = RedXGUI
969fling.BackgroundColor3 = Color3.new(0.666667, 0, 0)
970fling.BackgroundTransparency = 0.5
971fling.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
972fling.BorderSizePixel = 3
973fling.Position = UDim2.new(0.693457961, 0, 0.423076928, 0)
974fling.Size = UDim2.new(0, 137, 0, 31)
975fling.Font = Enum.Font.Gotham
976fling.Text = "FLINGGUI"
977fling.TextColor3 = Color3.new(0, 0, 0)
978fling.TextScaled = true
979fling.TextSize = 14
980fling.TextWrapped = true
981fling.MouseButton1Click:Connect(function()
982 -- Made By JackMcJagger15
983local FlingKill = Instance.new("ScreenGui")
984local Main = Instance.new("Frame")
985local Label = Instance.new("Frame")
986local Shadow = Instance.new("Frame")
987local StartKill = Instance.new("TextButton")
988local StopKill = Instance.new("TextButton")
989local Instructions = Instance.new("TextLabel")
990local CurrentPower = Instance.new("TextLabel")
991local Recomendation = Instance.new("TextLabel")
992local NameOfGui = Instance.new("TextLabel")
993local Exit = Instance.new("TextButton")
994local UPArrow = Instance.new("TextButton")
995local DownArrow = Instance.new("TextButton")
996
997-- Properties
998
999FlingKill.Name = "Fling/Kill"
1000FlingKill.Parent = game.CoreGui
1001
1002Main.Name = "Main"
1003Main.Parent = FlingKill
1004Main.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
1005Main.BorderSizePixel = 0
1006Main.Position = UDim2.new(0.702554762, 0, 0.446640313, 0)
1007Main.Size = UDim2.new(0, 217, 0, 233)
1008Main.Selectable = true
1009Main.Active = true
1010Main.Draggable = true
1011
1012Label.Name = "Label"
1013Label.Parent = Main
1014Label.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
1015Label.BorderSizePixel = 0
1016Label.Size = UDim2.new(0, 217, 0, 27)
1017
1018Shadow.Name = "Shadow"
1019Shadow.Parent = Main
1020Shadow.BackgroundColor3 = Color3.new(0.67451, 0.694118, 0.705882)
1021Shadow.BorderSizePixel = 0
1022Shadow.Position = UDim2.new(0, 0, 0.115879826, 0)
1023Shadow.Size = UDim2.new(0, 217, 0, 9)
1024
1025StartKill.Name = "StartKill"
1026StartKill.Parent = Main
1027StartKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
1028StartKill.BorderSizePixel = 0
1029StartKill.Position = UDim2.new(0.195852548, 0, 0.227467805, 0)
1030StartKill.Size = UDim2.new(0, 126, 0, 23)
1031StartKill.Font = Enum.Font.Cartoon
1032StartKill.Text = "FE Kill/Fling"
1033StartKill.TextColor3 = Color3.new(0, 0, 0)
1034StartKill.TextSize = 14
1035
1036StopKill.Name = "StopKill"
1037StopKill.Parent = Main
1038StopKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
1039StopKill.BorderSizePixel = 0
1040StopKill.Position = UDim2.new(0.207373276, 0, 0.38197428, 0)
1041StopKill.Size = UDim2.new(0, 124, 0, 23)
1042StopKill.Font = Enum.Font.Cartoon
1043StopKill.Text = "Stop FE Kill/Fling"
1044StopKill.TextColor3 = Color3.new(0, 0, 0)
1045StopKill.TextSize = 14
1046
1047Instructions.Name = "Instructions"
1048Instructions.Parent = Main
1049Instructions.BackgroundColor3 = Color3.new(1, 1, 1)
1050Instructions.BackgroundTransparency = 1
1051Instructions.Position = UDim2.new(0.0391705073, 0, 0.549356222, 0)
1052Instructions.Size = UDim2.new(0, 200, 0, 32)
1053Instructions.Font = Enum.Font.Cartoon
1054Instructions.Text = "Just touch someone to watch the fly to their death!"
1055Instructions.TextColor3 = Color3.new(0, 0, 0)
1056Instructions.TextSize = 14
1057Instructions.TextWrapped = true
1058
1059CurrentPower.Name = "CurrentPower"
1060CurrentPower.Parent = Main
1061CurrentPower.BackgroundColor3 = Color3.new(1, 1, 1)
1062CurrentPower.BackgroundTransparency = 1
1063CurrentPower.Position = UDim2.new(0.276497692, 0, 0.686695278, 0)
1064CurrentPower.Size = UDim2.new(0, 98, 0, 36)
1065CurrentPower.Font = Enum.Font.Cartoon
1066CurrentPower.Text = "Current Power = 5"
1067CurrentPower.TextColor3 = Color3.new(0, 0, 0)
1068CurrentPower.TextSize = 14
1069
1070Recomendation.Name = "Recomendation"
1071Recomendation.Parent = Main
1072Recomendation.BackgroundColor3 = Color3.new(1, 1, 1)
1073Recomendation.BackgroundTransparency = 1
1074Recomendation.Position = UDim2.new(0.0414746553, 0, 0.884120166, 0)
1075Recomendation.Size = UDim2.new(0, 200, 0, 21)
1076Recomendation.Font = Enum.Font.Cartoon
1077Recomendation.Text = "Recommended Power is 5"
1078Recomendation.TextColor3 = Color3.new(0, 0, 0)
1079Recomendation.TextSize = 14
1080
1081NameOfGui.Name = "NameOfGui"
1082NameOfGui.Parent = Main
1083NameOfGui.BackgroundColor3 = Color3.new(1, 1, 1)
1084NameOfGui.BackgroundTransparency = 1
1085NameOfGui.Position = UDim2.new(0.0806451589, 0, 0, 0)
1086NameOfGui.Size = UDim2.new(0, 154, 0, 27)
1087NameOfGui.Font = Enum.Font.Cartoon
1088NameOfGui.Text = "FE Kill/Fling By JackMcJagger15"
1089NameOfGui.TextColor3 = Color3.new(0, 0, 0)
1090NameOfGui.TextSize = 14
1091
1092Exit.Name = "Exit"
1093Exit.Parent = Main
1094Exit.BackgroundColor3 = Color3.new(1, 1, 1)
1095Exit.BackgroundTransparency = 1
1096Exit.Position = UDim2.new(0.907834113, 0, 0, 0)
1097Exit.Size = UDim2.new(0, 20, 0, 27)
1098Exit.Font = Enum.Font.Cartoon
1099Exit.Text = "X"
1100Exit.TextColor3 = Color3.new(0, 0, 0)
1101Exit.TextSize = 14
1102
1103UPArrow.Name = "UPArrow"
1104UPArrow.Parent = Main
1105UPArrow.BackgroundColor3 = Color3.new(1, 1, 1)
1106UPArrow.BackgroundTransparency = 1
1107UPArrow.Position = UDim2.new(0.0783410147, 0, 0.716738224, 0)
1108UPArrow.Size = UDim2.new(0, 26, 0, 23)
1109UPArrow.Font = Enum.Font.Cartoon
1110UPArrow.Text = "Up"
1111UPArrow.TextColor3 = Color3.new(0, 0, 0)
1112UPArrow.TextSize = 12
1113UPArrow.TextWrapped = true
1114
1115DownArrow.Name = "DownArrow"
1116DownArrow.Parent = Main
1117DownArrow.BackgroundColor3 = Color3.new(1, 1, 1)
1118DownArrow.BackgroundTransparency = 1
1119DownArrow.Position = UDim2.new(0.792626739, 0, 0.714592278, 0)
1120DownArrow.Size = UDim2.new(0, 26, 0, 23)
1121DownArrow.Font = Enum.Font.Cartoon
1122DownArrow.Text = "Down"
1123DownArrow.TextColor3 = Color3.new(0, 0, 0)
1124DownArrow.TextSize = 12
1125DownArrow.TextWrapped = true
1126
1127power = 500
1128active = false
1129local val = Instance.new("IntValue")
1130val.Name = "Number"
1131val.Parent = game.Players.LocalPlayer
1132val.Value = 5
1133
1134Exit.MouseButton1Click:connect(function()
1135FlingKill.Enabled = false
1136end)
1137
1138StartKill.MouseButton1Click:connect(function()
1139game:GetService('RunService').Stepped:connect(function()
1140if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
1141game.Players.LocalPlayer.Character.Head.CanCollide = false
1142game.Players.LocalPlayer.Character.Torso.CanCollide = false
1143game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
1144game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
1145else
1146if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
1147game.Players.LocalPlayer.Character.Head.CanCollide = false
1148game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
1149game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
1150game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
1151end
1152end
1153end)
1154wait(.1)
1155local bambam = Instance.new("BodyThrust")
1156bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
1157bambam.Force = Vector3.new(power,0,power)
1158bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
1159end)
1160
1161StopKill.MouseButton1Click:connect(function()
1162active = false
1163game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()
1164end)
1165
1166UPArrow.MouseButton1Click:connect(function()
1167power = power + 100
1168game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value + 1
1169CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
1170end)
1171
1172DownArrow.MouseButton1Click:connect(function()
1173power = power - 100
1174game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value - 1
1175CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value
1176end)
1177end)
1178
1179fps.Name = "fps"
1180fps.Parent = RedXGUI
1181fps.BackgroundColor3 = Color3.new(0.666667, 0, 0)
1182fps.BackgroundTransparency = 0.5
1183fps.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
1184fps.BorderSizePixel = 3
1185fps.Position = UDim2.new(0.0186915882, 0, 0.636094689, 0)
1186fps.Size = UDim2.new(0, 137, 0, 31)
1187fps.Font = Enum.Font.SourceSans
1188fps.Text = "FPSBOOSTER"
1189fps.TextColor3 = Color3.new(0, 0, 0)
1190fps.TextScaled = true
1191fps.TextSize = 14
1192fps.TextWrapped = true
1193fps.MouseButton1Click:Connect(function()
1194 for _,v in pairs(workspace:GetDescendants()) do
1195if v.ClassName == "Part"
1196or v.ClassName == "SpawnLocation"
1197or v.ClassName == "WedgePart"
1198or v.ClassName == "Terrain"
1199or v.ClassName == "MeshPart" then
1200v.Material = "Plastic"
1201end
1202end
1203
1204for _,v in pairs(workspace:GetDescendants()) do
1205if v.ClassName == "Decal"
1206or v.ClassName == "Texture" then
1207v:Destroy()
1208end
1209end
1210end)
1211
1212speed_2.Name = "speed"
1213speed_2.Parent = RedXGUI
1214speed_2.BackgroundColor3 = Color3.new(0.666667, 0, 0)
1215speed_2.BackgroundTransparency = 0.5
1216speed_2.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4)
1217speed_2.BorderSizePixel = 3
1218speed_2.Position = UDim2.new(0.355140179, 0, 0.636094689, 0)
1219speed_2.Size = UDim2.new(0, 318, 0, 31)
1220speed_2.Font = Enum.Font.Gotham
1221speed_2.Text = "FLY[Q]"
1222speed_2.TextColor3 = Color3.new(0, 0, 0)
1223speed_2.TextScaled = true
1224speed_2.TextSize = 14
1225speed_2.TextWrapped = true
1226speed_2.MouseButton1Down:connect(function()
1227 local Enabled = false
1228 local Camera = game.Workspace.CurrentCamera
1229 local Player = game:GetService("Players").LocalPlayer
1230 local Input = game:GetService("UserInputService")
1231 local Forward = false
1232 local Back = false
1233 local Left = false
1234 local Right = false
1235 local Up = false
1236 local Down = false
1237
1238 local function SetPlayer()
1239 for i,v in pairs(Player.Character:GetChildren()) do
1240 pcall(function()
1241 v.Anchored = not v.Anchored
1242 end)
1243 end
1244 end
1245
1246 Input.InputBegan:Connect(function(Key,IsChat)
1247 if IsChat then return end
1248 if Key.KeyCode == Enum.KeyCode.Q then
1249 Enabled = not Enabled
1250 SetPlayer()
1251 end
1252 if Key.KeyCode == Enum.KeyCode.W then
1253 Forward = true
1254 end
1255 if Key.KeyCode == Enum.KeyCode.S then
1256 Back = true
1257 end
1258 if Key.KeyCode == Enum.KeyCode.A then
1259 Left = true
1260 end
1261 if Key.KeyCode == Enum.KeyCode.D then
1262 Right = true
1263 end
1264 if Key.KeyCode == Enum.KeyCode.Space then
1265 Up = true
1266 end
1267 if Key.KeyCode == Enum.KeyCode.LeftControl then
1268 Down = true
1269 end
1270 end)
1271
1272 Input.InputEnded:Connect(function(Key,IsChat)
1273 if IsChat then return end
1274 if Key.KeyCode == Enum.KeyCode.W then
1275 Forward = false
1276 end
1277 if Key.KeyCode == Enum.KeyCode.S then
1278 Back = false
1279 end
1280 if Key.KeyCode == Enum.KeyCode.A then
1281 Left = false
1282 end
1283 if Key.KeyCode == Enum.KeyCode.D then
1284 Right = false
1285 end
1286 if Key.KeyCode == Enum.KeyCode.Space then
1287 Up = false
1288 end
1289 if Key.KeyCode == Enum.KeyCode.LeftControl then
1290 Down = false
1291 end
1292 end)
1293
1294 while game:GetService("RunService").RenderStepped:Wait() do
1295 if Enabled then
1296 pcall(function()
1297 if Forward then
1298 Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
1299 end
1300 if Back then
1301 Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
1302 end
1303 if Left then
1304 Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
1305 end
1306 if Right then
1307 Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
1308 end
1309 if Up then
1310 Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
1311 end
1312 if Down then
1313 Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
1314 end
1315 end)
1316 end
1317 end
1318end)
1319
1320TextLabel_3.Parent = RedXGUI
1321TextLabel_3.BackgroundColor3 = Color3.new(0.317647, 0.156863, 0.458824)
1322TextLabel_3.BorderSizePixel = 3
1323TextLabel_3.Position = UDim2.new(0.0672897175, 0, 0.547337294, 0)
1324TextLabel_3.Rotation = 90
1325TextLabel_3.Size = UDim2.new(0, 261, 0, 6)
1326TextLabel_3.Font = Enum.Font.SourceSans
1327TextLabel_3.Text = ""
1328TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
1329TextLabel_3.TextSize = 14
1330
1331close.Name = "close"
1332close.Parent = RedXGUI
1333close.BackgroundColor3 = Color3.new(0.34902, 0, 0.52549)
1334close.BorderSizePixel = 3
1335close.Position = UDim2.new(0.893457949, 0, 0.0384615399, 0)
1336close.Size = UDim2.new(0, 30, 0, 24)
1337close.Font = Enum.Font.SourceSans
1338close.Text = "X"
1339close.TextColor3 = Color3.new(0, 0, 0)
1340close.TextScaled = true
1341close.TextSize = 14
1342close.TextWrapped = true
1343close.MouseButton1Down:connect(function()
1344RedXGUI.Visible = false
1345open.Visible = true
1346end)
1347
1348TextLabel_4.Parent = RedXGUI
1349TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
1350TextLabel_4.BackgroundTransparency = 1
1351TextLabel_4.Position = UDim2.new(0.428359777, 0, 0.794960082, 0)
1352TextLabel_4.Size = UDim2.new(0, 245, 0, 55)
1353TextLabel_4.Font = Enum.Font.Gotham
1354TextLabel_4.Text = "SUBSCRIBE TO TURNINGLOBERB ON YOUTUBE"
1355TextLabel_4.TextColor3 = Color3.new(0, 0, 0)
1356TextLabel_4.TextScaled = true
1357TextLabel_4.TextSize = 14
1358TextLabel_4.TextWrapped = true
1359
1360open.Name = "open"
1361open.Parent = ScreenGui
1362open.BackgroundColor3 = Color3.new(0.666667, 1, 1)
1363open.BorderSizePixel = 3
1364open.Position = UDim2.new(0.00538047682, 0, 0.412598431, 0)
1365open.Size = UDim2.new(0, 75, 0, 31)
1366open.Font = Enum.Font.Gotham
1367open.Text = "OPEN"
1368open.TextColor3 = Color3.new(0, 0, 0)
1369open.TextScaled = true
1370open.TextSize = 14
1371open.TextWrapped = true
1372open.MouseButton1Down:connect(function()
1373RedXGUI.Visible = true
1374open.Visible = false
1375end)
1376create new paste / syntax languages / archive / faq / tools / night mode / api / scraping api
1377privacy statement / cookies policy / terms of service / security disclosure / dmca / report abuse / contact
1378