Advertisement
Naggi123

Goldenfreddynaggi

Mar 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.64 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Top = Instance.new("Frame")
  7. local Titl = Instance.new("TextLabel")
  8. local Exit = Instance.new("TextButton")
  9. local WS = Instance.new("TextButton")
  10. local Btools = Instance.new("TextButton")
  11. local NOclip = Instance.new("TextButton")
  12. local Bank = Instance.new("TextButton")
  13. local Jew = Instance.new("TextButton")
  14. local Base = Instance.new("TextButton")
  15. local Prison = Instance.new("TextButton")
  16. local TextButton = Instance.new("TextButton")
  17. --Properties:
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = ScreenGui
  22. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  23. Main.Position = UDim2.new(0.13475579, 0, 0.223107606, 0)
  24. Main.Size = UDim2.new(0, 381, 0, 263)
  25. Main.Visible = false
  26. Main.Active = true
  27. Main.Draggable = true
  28.  
  29. Top.Name = "Top"
  30. Top.Parent = Main
  31. Top.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  32. Top.Size = UDim2.new(0, 381, 0, 34)
  33.  
  34. Titl.Name = "Titl"
  35. Titl.Parent = Top
  36. Titl.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  37. Titl.Size = UDim2.new(0, 381, 0, 34)
  38. Titl.Font = Enum.Font.SciFi
  39. Titl.Text = "Goldenfreddynaggi's Jailbreak GUI"
  40. Titl.TextColor3 = Color3.new(0, 1, 0)
  41. Titl.TextSize = 14
  42.  
  43. Exit.Name = "Exit"
  44. Exit.Parent = Top
  45. Exit.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  46. Exit.Position = UDim2.new(0.889763772, 0, 0, 0)
  47. Exit.Size = UDim2.new(0, 42, 0, 19)
  48. Exit.Font = Enum.Font.SciFi
  49. Exit.Text = "X"
  50. Exit.TextColor3 = Color3.new(0, 0, 0)
  51. Exit.TextSize = 14
  52. Exit.MouseButton1Down:connect (function()
  53.     Main.Visible = false
  54.     Open.Visible = true
  55. end)
  56.  
  57. WS.Name = "WS"
  58. WS.Parent = Top
  59. WS.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  60. WS.Position = UDim2.new(0.0498687699, 0, 1.44117641, 0)
  61. WS.Size = UDim2.new(0, 87, 0, 50)
  62. WS.Font = Enum.Font.SciFi
  63. WS.Text = "Walkspeed"
  64. WS.TextColor3 = Color3.new(0, 0, 0)
  65. WS.TextSize = 14
  66. --walkspeed
  67. WS.MouseButton1Down:connect(function()
  68.     local walkspeedplayer = game:GetService("Players").LocalPlayer
  69.     local walkspeedmouse = walkspeedplayer:GetMouse()
  70.    
  71.     local walkspeedenabled = false
  72.    
  73.     function x_walkspeed(key)
  74.         if (key == "x") then
  75.             if walkspeedenabled == false then
  76.                 _G.WS = 110;
  77.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  78.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  79.                 Humanoid.WalkSpeed = _G.WS;
  80.                 end)
  81.                 Humanoid.WalkSpeed = _G.WS;
  82.                
  83.                 walkspeedenabled = true
  84.             elseif walkspeedenabled == true then
  85.                 _G.WS = 20;
  86.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  87.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  88.                 Humanoid.WalkSpeed = _G.WS;
  89.                 end)
  90.                 Humanoid.WalkSpeed = _G.WS;
  91.                
  92.                 walkspeedenabled = false
  93.             end
  94.         end
  95.     end
  96.    
  97.     walkspeedmouse.KeyDown:connect(x_walkspeed)
  98.    
  99. end)
  100.  
  101. Btools.Name = "Btools"
  102. Btools.Parent = Top
  103. Btools.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  104. Btools.Position = UDim2.new(0.0498687662, 0, 3.8529408, 0)
  105. Btools.Size = UDim2.new(0, 87, 0, 45)
  106. Btools.Font = Enum.Font.SciFi
  107. Btools.Text = "BTools"
  108. Btools.TextColor3 = Color3.new(0, 0, 0)
  109. Btools.TextSize = 14
  110.  
  111. --btools
  112. BTools.MouseButton1Down:connect(function()
  113.     game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  114. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  115.    if child.ClassName == "Part" then
  116.        child.Locked = false
  117.    end
  118.    if child.ClassName == "MeshPart" then
  119.        child.Locked = false
  120.    end
  121.    if child.ClassName == "UnionOperation" then
  122.        child.Locked = false
  123.    end
  124.    if child.ClassName == "Model" then
  125.        for index, chil in pairs(child:GetChildren()) do
  126.            if chil.ClassName == "Part" then
  127.                chil.Locked = false
  128.            end
  129.            if chil.ClassName == "MeshPart" then
  130.                chil.Locked = false
  131.            end
  132.            if chil.ClassName == "UnionOperation" then
  133.                chil.Locked = false
  134.            end
  135.            if chil.ClassName == "Model" then
  136.                for index, childe in pairs(chil:GetChildren()) do
  137.                    if childe.ClassName == "Part" then
  138.                        childe.Locked = false
  139.                    end
  140.                    if childe.ClassName == "MeshPart" then
  141.                        childe.Locked = false
  142.                    end
  143.                    if childe.ClassName == "UnionOperation" then
  144.                        childe.Locked = false
  145.                    end
  146.                    if childe.ClassName == "Model" then
  147.                        for index, childeo in pairs(childe:GetChildren()) do
  148.                            if childeo.ClassName == "Part" then
  149.                                childeo.Locked = false
  150.                            end
  151.                            if childeo.ClassName == "MeshPart" then
  152.                                childeo.Locked = false
  153.                            end
  154.                            if childeo.ClassName == "UnionOperation" then
  155.                                childeo.Locked = false
  156.                            end
  157.                            if childeo.ClassName == "Model" then
  158.                            end
  159.                        end
  160.                    end
  161.                end
  162.            end
  163.        end
  164.    end
  165. end
  166. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  167. c.BinType = Enum.BinType.Hammer
  168. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  169. c.BinType = Enum.BinType.Clone
  170. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  171. c.BinType = Enum.BinType.Grab
  172. end)
  173.  
  174. NOclip.Name = "NOclip"
  175. NOclip.Parent = Top
  176. NOclip.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  177. NOclip.Position = UDim2.new(0.0498687662, 0, 5.85294056, 0)
  178. NOclip.Size = UDim2.new(0, 87, 0, 50)
  179. NOclip.Font = Enum.Font.SciFi
  180. NOclip.Text = "NoClip"
  181. NOclip.TextColor3 = Color3.new(0, 0, 0)
  182. NOclip.TextSize = 14
  183. --noclip
  184. NoClip.MouseButton1Down:connect(function()
  185.     game:GetService("Players").LocalPlayer.Character.RightHand.Touched:connect(function(obj)
  186. if obj ~= workspace.Terrain then
  187. obj.CanCollide = false
  188. wait(1)
  189. obj.CanCollide = true
  190. end
  191. end)
  192. end)
  193.  
  194. Bank.Name = "Bank"
  195. Bank.Parent = Top
  196. Bank.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  197. Bank.Position = UDim2.new(0.674540579, 0, 1.44117641, 0)
  198. Bank.Size = UDim2.new(0, 101, 0, 50)
  199. Bank.Font = Enum.Font.SciFi
  200. Bank.Text = "Bank"
  201. Bank.TextColor3 = Color3.new(0, 0, 0)
  202. Bank.TextSize = 14
  203. --bank teleport
  204. Bank.MouseButton1Down:connect(function()
  205.     for i = 1,45 do
  206. wait(.08)
  207. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
  208. end
  209. end)
  210.  
  211. Jew.Name = "Jew"
  212. Jew.Parent = Top
  213. Jew.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  214. Jew.Position = UDim2.new(0.674540579, 0, 3.8529408, 0)
  215. Jew.Size = UDim2.new(0, 101, 0, 46)
  216. Jew.Font = Enum.Font.SciFi
  217. Jew.Text = "Jewrly"
  218. Jew.TextColor3 = Color3.new(0, 0, 0)
  219. Jew.TextSize = 14
  220. --jewelry teleport
  221. Jewelry.MouseButton1Down:connect(function()
  222.     for i = 1,45 do
  223. wait(.08)
  224. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
  225. end
  226. end)
  227.  
  228. Base.Name = "Base"
  229. Base.Parent = Top
  230. Base.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  231. Base.Position = UDim2.new(0.674540579, 0, 5.82352877, 0)
  232. Base.Size = UDim2.new(0, 101, 0, 50)
  233. Base.Font = Enum.Font.SciFi
  234. Base.Text = "Base"
  235. Base.TextColor3 = Color3.new(0, 0, 0)
  236. Base.TextSize = 14
  237. --Criminal Base city teleport
  238. CrimBase.MouseButton1Down:connect(function()
  239.     for i = 1,45 do
  240. wait(.08)
  241. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 18, 1578.80261)
  242. end
  243. end)
  244.  
  245. Prison.Name = "Prison"
  246. Prison.Parent = Top
  247. Prison.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  248. Prison.Position = UDim2.new(0.346456707, 0, 3.8529408, 0)
  249. Prison.Size = UDim2.new(0, 115, 0, 50)
  250. Prison.Font = Enum.Font.SciFi
  251. Prison.Text = "Prison"
  252. Prison.TextColor3 = Color3.new(0, 0, 0)
  253. Prison.TextSize = 14
  254. --prison teleport
  255. Prison.MouseButton1Down:connect(function()
  256.     for i = 1,45 do
  257. wait(.08)
  258. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1138.66, 18.009, -1430.01)
  259. end
  260. end)
  261.  
  262. TextButton.Parent = ScreenGui
  263. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  264. TextButton.Position = UDim2.new(0.687671244, 0, 0.647410393, 0)
  265. TextButton.Size = UDim2.new(0, 134, 0, 50)
  266. TextButton.Font = Enum.Font.SciFi
  267. TextButton.Text = "Open"
  268. TextButton.TextColor3 = Color3.new(1, 1, 1)
  269. TextButton.TextSize = 13
  270. TextButton.MouseButton1Down:connect (function()
  271.     TextButton.Visible = false
  272.     Main.Visible = true
  273. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement