littleheifer96

GIMME UR TOES V1

Mar 1st, 2019 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.14 KB | None | 0 0
  1. --Made By: littleheifer96
  2. --follow or friend request my Roblox user, "littleheifer96"
  3. --outdated for jailbreak some features still might work on other games
  4.  
  5. local RobloxExploit = Instance.new("ScreenGui")
  6. local MainGUI = Instance.new("Frame")
  7. local ExploitName = Instance.new("TextLabel")
  8. local InfiniteJumpButton = Instance.new("TextButton")
  9. local NoDoorsButton = Instance.new("TextButton")
  10. local BToolsButton = Instance.new("TextButton")
  11. local WalkspeedButton = Instance.new("TextButton")
  12. local CloseGUIButton = Instance.new("TextButton")
  13. local CloseGUI = Instance.new("Frame")
  14. local OpenButton = Instance.new("TextButton")
  15.  
  16. RobloxExploit.Name = "Roblox Exploit"
  17. RobloxExploit.Parent = game.CoreGui
  18.  
  19. MainGUI.Active = true
  20. MainGUI.draggable = true
  21.  
  22. MainGUI.Name = "MainGUI"
  23. MainGUI.Parent = RobloxExploit
  24. MainGUI.BackgroundColor3 = Color3.new(0.329412, 0.329412, 0.329412)
  25. MainGUI.Position = UDim2.new(0.423362166, 0, 0.324232101, 0)
  26. MainGUI.Size = UDim2.new(0, 247, 0, 309)
  27. MainGUI.Visible = false
  28.  
  29. ExploitName.Name = "Exploit Name"
  30. ExploitName.Parent = MainGUI
  31. ExploitName.BackgroundColor3 = Color3.new(0.764706, 0.0235294, 0)
  32. ExploitName.BorderColor3 = Color3.new(0, 0, 0)
  33. ExploitName.BorderSizePixel = 3
  34. ExploitName.Position = UDim2.new(0.0931174085, 0, 0.0355987027, 0)
  35. ExploitName.Size = UDim2.new(0, 200, 0, 33)
  36. ExploitName.Font = Enum.Font.SourceSansSemibold
  37. ExploitName.Text = "GIMME UR TOES V1"
  38. ExploitName.TextColor3 = Color3.new(0, 0, 0)
  39. ExploitName.TextSize = 21
  40.  
  41. InfiniteJumpButton.Name = "Infinite Jump Button"
  42. InfiniteJumpButton.Parent = MainGUI
  43. InfiniteJumpButton.BackgroundColor3 = Color3.new(1, 0.466667, 0)
  44. InfiniteJumpButton.BorderColor3 = Color3.new(0, 0, 0)
  45. InfiniteJumpButton.BorderSizePixel = 3
  46. InfiniteJumpButton.Position = UDim2.new(0.0931174085, 0, 0.394822001, 0)
  47. InfiniteJumpButton.Size = UDim2.new(0, 200, 0, 50)
  48. InfiniteJumpButton.Font = Enum.Font.SourceSansSemibold
  49. InfiniteJumpButton.Text = "Infinite Jump"
  50. InfiniteJumpButton.TextColor3 = Color3.new(0, 0, 0)
  51. InfiniteJumpButton.TextSize = 18
  52. InfiniteJumpButton.MouseButton1Click:connect(function()
  53.      game:GetService("UserInputService").JumpRequest:connect(function()
  54.         game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")      
  55.     end)
  56. end)
  57.  
  58. NoDoorsButton.Name = "No Doors"
  59. NoDoorsButton.Parent = MainGUI
  60. NoDoorsButton.BackgroundColor3 = Color3.new(0.917647, 1, 0)
  61. NoDoorsButton.BorderColor3 = Color3.new(0, 0, 0)
  62. NoDoorsButton.BorderSizePixel = 3
  63. NoDoorsButton.Position = UDim2.new(0.0931174085, 0, 0.601941764, 0)
  64. NoDoorsButton.Size = UDim2.new(0, 200, 0, 50)
  65. NoDoorsButton.Font = Enum.Font.SourceSansSemibold
  66. NoDoorsButton.Text = "No Doors"
  67. NoDoorsButton.TextColor3 = Color3.new(0, 0, 0)
  68. NoDoorsButton.TextSize = 18
  69. NoDoorsButton.TextWrapped = true
  70. NoDoorsButton.MouseButton1Click:connect(function()
  71.      local doors = workspace:FindFirstChild("Doors")
  72.     if not doors then return end
  73.     for i,v in pairs(doors:GetChildren()) do
  74.         v:Destroy()
  75.     end
  76. end)
  77.  
  78. BToolsButton.Name = "BTools Button"
  79. BToolsButton.Parent = MainGUI
  80. BToolsButton.BackgroundColor3 = Color3.new(0.152941, 0.709804, 0)
  81. BToolsButton.BorderColor3 = Color3.new(0, 0, 0)
  82. BToolsButton.BorderSizePixel = 3
  83. BToolsButton.Position = UDim2.new(0.0931174085, 0, 0.812297702, 0)
  84. BToolsButton.Size = UDim2.new(0, 200, 0, 50)
  85. BToolsButton.Font = Enum.Font.SourceSansSemibold
  86. BToolsButton.Text = "B-Tools"
  87. BToolsButton.TextColor3 = Color3.new(0, 0, 0)
  88. BToolsButton.TextSize = 18
  89. BToolsButton.MouseButton1Click:connect(function()
  90.      game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  91. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  92.    if child.ClassName == "Part" then
  93.        child.Locked = false
  94.    end
  95.    if child.ClassName == "MeshPart" then
  96.        child.Locked = false
  97.    end
  98.    if child.ClassName == "UnionOperation" then
  99.        child.Locked = false
  100.    end
  101.    if child.ClassName == "Model" then
  102.        for index, chil in pairs(child:GetChildren()) do
  103.            if chil.ClassName == "Part" then
  104.                chil.Locked = false
  105.            end
  106.            if chil.ClassName == "MeshPart" then
  107.                chil.Locked = false
  108.            end
  109.            if chil.ClassName == "UnionOperation" then
  110.                chil.Locked = false
  111.            end
  112.            if chil.ClassName == "Model" then
  113.                for index, childe in pairs(chil:GetChildren()) do
  114.                    if childe.ClassName == "Part" then
  115.                        childe.Locked = false
  116.                    end
  117.                    if childe.ClassName == "MeshPart" then
  118.                        childe.Locked = false
  119.                    end
  120.                    if childe.ClassName == "UnionOperation" then
  121.                        childe.Locked = false
  122.                    end
  123.                    if childe.ClassName == "Model" then
  124.                        for index, childeo in pairs(childe:GetChildren()) do
  125.                            if childeo.ClassName == "Part" then
  126.                                childeo.Locked = false
  127.                            end
  128.                            if childeo.ClassName == "MeshPart" then
  129.                                childeo.Locked = false
  130.                            end
  131.                            if childeo.ClassName == "UnionOperation" then
  132.                                childeo.Locked = false
  133.                            end
  134.                            if childeo.ClassName == "Model" then
  135.                            end
  136.                        end
  137.                    end
  138.                end
  139.            end
  140.        end
  141.    end
  142. end
  143. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  144. c.BinType = Enum.BinType.Hammer
  145. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  146. c.BinType = Enum.BinType.Clone
  147. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  148. c.BinType = Enum.BinType.Grab
  149. end)
  150.  
  151. WalkspeedButton.Name = "Walkspeed Button"
  152. WalkspeedButton.Parent = MainGUI
  153. WalkspeedButton.BackgroundColor3 = Color3.new(1, 0, 0)
  154. WalkspeedButton.BorderColor3 = Color3.new(0, 0, 0)
  155. WalkspeedButton.BorderSizePixel = 3
  156. WalkspeedButton.Position = UDim2.new(0.0931174085, 0, 0.187702268, 0)
  157. WalkspeedButton.Size = UDim2.new(0, 200, 0, 50)
  158. WalkspeedButton.Font = Enum.Font.SourceSansSemibold
  159. WalkspeedButton.Text = "Walkspeed(x)"
  160. WalkspeedButton.TextColor3 = Color3.new(0, 0, 0)
  161. WalkspeedButton.TextSize = 18
  162. WalkspeedButton.MouseButton1Click:connect(function()
  163.     local walkspeedplayer = game:GetService("Players").LocalPlayer
  164.     local walkspeedmouse = walkspeedplayer:GetMouse()
  165.    
  166.     local walkspeedenabled = false
  167.    
  168.     function x_walkspeed(key)
  169.         if (key == "x") then
  170.             if walkspeedenabled == false then
  171.                 _G.WS = 150; -- Change This Number To Whatever You Want Your Running Speed To Be --
  172.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  173.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  174.                 Humanoid.WalkSpeed = _G.WS;
  175.                 end)
  176.                 Humanoid.WalkSpeed = _G.WS;
  177.                
  178.                 walkspeedenabled = true
  179.             elseif walkspeedenabled == true then
  180.                 _G.WS = 25; -- Change This Number To Whatever You Want Your Walking Speed To Be --
  181.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  182.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  183.                 Humanoid.WalkSpeed = _G.WS;
  184.                 end)
  185.                 Humanoid.WalkSpeed = _G.WS;
  186.                
  187.                 walkspeedenabled = false
  188.             end
  189.         end
  190.     end
  191.    
  192.     walkspeedmouse.KeyDown:connect(x_walkspeed)
  193.    
  194. end)
  195.  
  196. CloseGUIButton.Name = "Close GUI Button"
  197. CloseGUIButton.Parent = MainGUI
  198. CloseGUIButton.BackgroundColor3 = Color3.new(0.639216, 0, 0)
  199. CloseGUIButton.BorderColor3 = Color3.new(0.658824, 0, 0)
  200. CloseGUIButton.BorderSizePixel = 3
  201. CloseGUIButton.Position = UDim2.new(0.91093117, 0, 0, 0)
  202. CloseGUIButton.Size = UDim2.new(0, 22, 0, 20)
  203. CloseGUIButton.Font = Enum.Font.SourceSans
  204. CloseGUIButton.Text = "X"
  205. CloseGUIButton.TextColor3 = Color3.new(0, 0, 0)
  206. CloseGUIButton.TextSize = 18
  207. CloseGUIButton.TextStrokeTransparency = 7
  208. CloseGUIButton.MouseButton1Click:connect(function()
  209.     MainGUI.Visible = false
  210.     CloseGUI.Visible = true
  211. end)
  212.  
  213. CloseGUI.Name = "Close GUI"
  214. CloseGUI.Parent = RobloxExploit
  215. CloseGUI.BackgroundColor3 = Color3.new(0.647059, 0, 0)
  216. CloseGUI.BorderColor3 = Color3.new(0, 0, 0)
  217. CloseGUI.BorderSizePixel = 3
  218. CloseGUI.Position = UDim2.new(0.739184201, 0, 0, 0)
  219. CloseGUI.Size = UDim2.new(0, 100, 0, 37)
  220.  
  221. OpenButton.Name = "Open Button"
  222. OpenButton.Parent = CloseGUI
  223. OpenButton.BackgroundColor3 = Color3.new(0.839216, 0, 0)
  224. OpenButton.Position = UDim2.new(0, 0, -0.000844478607, 0)
  225. OpenButton.Size = UDim2.new(0, 100, 0, 37)
  226. OpenButton.Font = Enum.Font.SourceSansSemibold
  227. OpenButton.Text = "Open"
  228. OpenButton.TextColor3 = Color3.new(0, 0, 0)
  229. OpenButton.TextSize = 20
  230. OpenButton.MouseButton1Click:connect(function()
  231.     MainGUI.Visible = true
  232.     CloseGUI.visible = false
  233. end)
Add Comment
Please, Sign In to add comment