Advertisement
POPOP1LIN

Script Jailbreack (Funcional no ma ago acargo de su uso. USAR CON CUIDADO)

Mar 21st, 2022
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.98 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Titulo = Instance.new("TextLabel")
  9. local Fly = Instance.new("TextButton")
  10. local WalkSpeed = Instance.new("TextButton")
  11. local CTRLclickbutton = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Frame.Parent = ScreenGui
  19. Frame.BackgroundColor3 = Color3.fromRGB(111, 111, 111)
  20. Frame.BackgroundTransparency = 0.100
  21. Frame.BorderColor3 = Color3.fromRGB(255, 0, 0)
  22. Frame.Position = UDim2.new(0, 0, 0.51313132, 0)
  23. Frame.Size = UDim2.new(0, 177, 0, 251)
  24.  
  25. Titulo.Name = "Titulo"
  26. Titulo.Parent = Frame
  27. Titulo.BackgroundColor3 = Color3.fromRGB(255, 0, 46)
  28. Titulo.BorderColor3 = Color3.fromRGB(255, 0, 0)
  29. Titulo.Size = UDim2.new(0, 177, 0, 50)
  30. Titulo.Font = Enum.Font.SciFi
  31. Titulo.Text = "Gui Jailbreack"
  32. Titulo.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. Titulo.TextSize = 30.000
  34.  
  35. Fly.Name = "Fly"
  36. Fly.Parent = Frame
  37. Fly.BackgroundColor3 = Color3.fromRGB(0, 255, 226)
  38. Fly.Position = UDim2.new(0, 0, 0.24701196, 0)
  39. Fly.Size = UDim2.new(0, 177, 0, 48)
  40. Fly.Font = Enum.Font.SciFi
  41. Fly.Text = "Fly [E]"
  42. Fly.TextColor3 = Color3.fromRGB(4, 98, 0)
  43. Fly.TextSize = 39.000
  44. Fly.TextStrokeColor3 = Color3.fromRGB(255, 0, 0)
  45. Fly.MouseButton1Down:connect(function()
  46. repeat wait()
  47. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  48. local mouse = game.Players.LocalPlayer:GetMouse()
  49. repeat wait() until mouse
  50. local plr = game.Players.LocalPlayer
  51. local torso = plr.Character.Head
  52. local flying = false
  53. local deb = true
  54. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  55. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  56. local maxspeed = 50
  57. local speed = 0
  58.  
  59. function Fly()
  60. local bg = Instance.new("BodyGyro", torso)
  61. bg.P = 9e4
  62. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  63. bg.cframe = torso.CFrame
  64. local bv = Instance.new("BodyVelocity", torso)
  65. bv.velocity = Vector3.new(0,0.1,0)
  66. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  67. repeat wait()
  68. plr.Character.Humanoid.PlatformStand = true
  69. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  70. speed = speed+.5+(speed/maxspeed)
  71. if speed > maxspeed then
  72. speed = maxspeed
  73. end
  74. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  75. speed = speed-1
  76. if speed < 0 then
  77. speed = 0
  78. end
  79. end
  80. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  81. bv.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
  82. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  83. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  84. bv.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
  85. else
  86. bv.velocity = Vector3.new(0,0.1,0)
  87. end
  88. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  89. until not flying
  90. ctrl = {f = 0, b = 0, l = 0, r = 0}
  91. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  92. speed = 0
  93. bg:Destroy()
  94. bv:Destroy()
  95. plr.Character.Humanoid.PlatformStand = false
  96. end
  97. mouse.KeyDown:connect(function(key)
  98. if key:lower() == "e" then
  99. if flying then flying = false
  100. else
  101. flying = true
  102. Fly()
  103. end
  104. elseif key:lower() == "w" then
  105. ctrl.f = 1
  106. elseif key:lower() == "s" then
  107. ctrl.b = -1
  108. elseif key:lower() == "a" then
  109. ctrl.l = -1
  110. elseif key:lower() == "d" then
  111. ctrl.r = 1
  112. end
  113. end)
  114. mouse.KeyUp:connect(function(key)
  115. if key:lower() == "w" then
  116. ctrl.f = 0
  117. elseif key:lower() == "s" then
  118. ctrl.b = 0
  119. elseif key:lower() == "a" then
  120. ctrl.l = 0
  121. elseif key:lower() == "d" then
  122. ctrl.r = 0
  123. end
  124. end)
  125. Fly()
  126. end)
  127.  
  128. WalkSpeed.Name = "WalkSpeed"
  129. WalkSpeed.Parent = Frame
  130. WalkSpeed.BackgroundColor3 = Color3.fromRGB(222, 255, 7)
  131. WalkSpeed.Position = UDim2.new(-0.0677966103, 0, 0.462151408, 0)
  132. WalkSpeed.Size = UDim2.new(0, 189, 0, 50)
  133. WalkSpeed.Font = Enum.Font.SciFi
  134. WalkSpeed.Text = "WalkSpeed"
  135. WalkSpeed.TextColor3 = Color3.fromRGB(255, 0, 4)
  136. WalkSpeed.TextSize = 36.000
  137. WalkSpeed.MouseButton1Down:connect(function()
  138. getgenv().WalkSpeedValue = 100; -- Cambia el 100 por el valor que quieras
  139. local Player = game:service'Players'.LocalPlayer;
  140. Player.Character.Humanoid:GetPropertyChangedSignal'WalkSpeed':Connect(function()
  141. Player.Character.Humanoid.WalkSpeed = getgenv().WalkSpeedValue;
  142. end)
  143. Player.Character.Humanoid.WalkSpeed = getgenv().WalkSpeedValue;
  144. end)
  145.  
  146. CTRLclickbutton.Name = "[CTRL]clickbutton"
  147. CTRLclickbutton.Parent = Frame
  148. CTRLclickbutton.BackgroundColor3 = Color3.fromRGB(85, 85, 85)
  149. CTRLclickbutton.Position = UDim2.new(0, 0, 0.689243019, 0)
  150. CTRLclickbutton.Size = UDim2.new(0, 177, 0, 50)
  151. CTRLclickbutton.Font = Enum.Font.SciFi
  152. CTRLclickbutton.Text = "[CTRL]click tp"
  153. CTRLclickbutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  154. CTRLclickbutton.TextSize = 30.000
  155. CTRLclickbutton.MouseButton1Down:connect(function()
  156. --click to tp
  157. local Imput = game:GetService("UserInputService")
  158. local Plr = game:service'Players'.LocalPlayer
  159. local Mouse = Plr:GetMouse()
  160.  
  161. function To(position)
  162. local Chr = Plr.Character
  163. if Chr ~= nil then
  164. Chr:MoveTo(position)
  165. end
  166. end
  167.  
  168. Imput.InputBegan:Connect(function(input)
  169. if input.UserInputType == Enum.UserInputType.MouseButton1 and Imput:IsKeyDown(Enum.KeyCode.LeftControl) then
  170. To(Mouse.Hit.p)
  171. end
  172. end)
  173.  
  174. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement