Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.89 KB | None | 0 0
  1. TO MAKE THE BUTTON ACTIVATE THE SCRIPT:
  2. if AUTOQUESTFARM == false then
  3. AUTOQUESTFARM = true
  4. BUTTONNAMEHERE.MouseButton1Click:connect(function()
  5. Scripthere
  6. end)
  7. test.MouseButton1Click:connect(function()
  8. test.Visible = false
  9. testoff.Visible = true
  10. end)
  11. testoff.MouseButton1Click:connect(function()
  12. test.Visible = true
  13. testoff.Visible = false
  14. end)
  15. _G.StopFarming = true
  16. game:GetObjects("rbxassetid://02932401353")[1].Parent = workspace
  17. di chuyen gui
  18. Frame.Draggable = true
  19. Frame.Active =true
  20. Gui OPEN
  21.  
  22. Open / Close GUI [Template]
  23.  
  24. function onClick()
  25.  
  26. script.Parent.Parent.Frame.Visible = false -- Makes frame invisible
  27. local frame = script.Parent.Parent.Frame
  28. script.Parent.Visible = false -- Makes Open Button Invisible
  29. script.Parent.Parent.Open.Visible = true
  30. end
  31.  
  32.  
  33. script.Parent.MouseButton1Down:connect(onClick)
  34.  
  35. Gui1.Visible = true
  36.  
  37. esp.MouseButton1Click:connect(function() -- Make sure its mouse button 1 click and not any other one
  38. loadstring(game:HttpGet(('https://pastebin.com/raw/ypSsQRK6'),true))()
  39.  
  40. print("Working")
  41.  
  42. -- Im using a mm2 esp script
  43. end)
  44.  
  45. close.MouseButton1Click:connect(function() -- script to close the gui
  46. MainGUI.Visible = false -- makes the main gui invisible
  47. opengui.Visible = true -- makes the open button visible again
  48. end)
  49.  
  50. open.MouseButton1Click:connect(function() -- script to open the gui
  51. MainGUI.Visible = true -- Makes the gui visible
  52. opengui.Visible = false -- Makes the open button invisible
  53. end)
  54.  
  55. BUTTONNAMEHERE.MouseButton1Down:connect(function()
  56. Scripthere
  57. end)
  58.  
  59. Search you're Main and make it draggable like that
  60.  
  61. YOURMAINFRAMENAME.Draggable = true
  62.  
  63.  
  64. To make it open you to
  65.  
  66. NameOFBUTTON.MouseButton1Down:connect(function()
  67. NameOFURMAINGUI.Visible = true
  68. NAMEOFOPENFrame.Visible = false
  69. end)
  70.  
  71. To make it close you to
  72.  
  73. CLOSEBUTTONNAME.MouseButton1Down:connect(function()
  74. NAMEOFOPENBUTTON.Visible = true
  75. MAINGUINAME.Visible = false
  76. end)
  77.  
  78. Then scroll up and search for
  79.  
  80. GUINAME.Parent = game.Workspace
  81. change Workspace to CoreGui
  82.  
  83. GUINAME.Parent = game.CoreGui
  84.  
  85. [FOR GUI IF IT'S SCRIPTED TO LUA]
  86.  
  87. --Help Made By Scelt
  88.  
  89.  
  90.  
  91. script vip:
  92. local frame = script.Parent.Parent.Parent:WaitForChild('FrameGUI').Frame
  93. local toggle = false
  94. script.Parent.MouseButton1Click:connect(function()
  95. if toggle == false then
  96. frame:TweenPosition(UDim2.new(0.5,-250,0.5,-200), 'Out', 'Bounce', 1)
  97. toggle = true
  98. else
  99. frame:TweenPosition(UDim2.new(0.5,-250,1.7,-200), 'Out', 'Bounce', 1)
  100. toggle = false
  101. end
  102. end)
  103.  
  104.  
  105.  
  106.  
  107.  
  108. game.Players.LocalPlayer:WaitForChild("PlayerGui")
  109.  
  110.  
  111. -- SUBSCRIBE TO PEWDIEPIE <3
  112. -- USER : ASD
  113. -- PASS : ASD
  114. -- TYPICAL
  115. script.Parent.MouseButton1Click:Connect(function()
  116. -- FAST SCRIPT -- DO NOT CHANGE THE "SCRIPT" FIRST OF ALL INSERT A LOCAL SCRIPT IN YOUR GUI ! :) SUBSCRIBE
  117. end)
  118.  
  119. CHANGETHIS.MouseButton1Down:Connect(fuction()
  120. -- MANUAL SCRIPT
  121. end)
  122.  
  123. CHANGETHIS.MouseButton1Down:Connect(fuction()
  124. if key.Text == "123" and pass.text == "555" then
  125. FRAMENAME.Visible = true
  126. FRAMENAME.Visiible = false
  127. end)
  128.  
  129.  
  130.  
  131. --SCRIPTS!
  132. maingui.Active = true
  133. maingui.Draggable = true
  134.  
  135. openbutton.MouseButton1Down:connect(function()
  136. maingui.Visible = true
  137. opengui.Visible = false
  138. end)
  139.  
  140. exitbutton.MouseButton1Down:connect(function()
  141. maingui.Visible = false
  142. opengui.Visible = true
  143. end)
  144.  
  145. speed.MouseButton1Down:connect(function()
  146. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
  147. end)
  148.  
  149.  
  150.  
  151. --// JAFTERGAMERTV \\--
  152.  
  153. script.Parent.MouseButton1Click:connect(function() -- The function of when the Players Clicks.
  154. if script.Parent.Parent.Box.Visible == false then -- This tells wither it is open or not.
  155. script.Parent.Text = "Close" -- Tells us that it is open.
  156. script.Parent.Parent.Box.Visible = true -- Makes the box visible.
  157. else -- Otherwise
  158. script.Parent.Text = "Menu" -- Tells us that it is closed.
  159. script.Parent.Parent.Box.Visible = false -- Makes the box Invisible
  160. end -- Ends the If statement.
  161. end) -- Ends the function in general.
  162.  
  163.  
  164. local Button = script.Parent
  165. Frame = script.Parent.Parent.Menu
  166.  
  167. function onClick()
  168. if Frame.Visible == false then
  169. Frame.Visible = true
  170. elseif Frame.Visible == true then
  171. Frame.Visible = false
  172. end
  173. end
  174.  
  175. Button.MouseButton1Click:connect(onClick)
  176. https://mothereff.in/lua-minifier?fbclid=IwAR02-CLcsK_3Dcd5uUZwVRYo533hdmQ1d08TA7wVxKQmxpQJb0p2jBN2TeQ#for%20z%20%3D%201%2C%2010%20do%0A%20%20for%20y%20%3D%201%2C%2010%20do%0A%20%20%20%20for%20x%20%3D%201%2C%2010%20do%0A%20%20%20%20%20%20if%20x%20%5E%202%20%2B%20y%20%5E%202%20%3D%3D%20z%20%5E%202%20then%0A%20%20%20%20%20%20%20%20print%28%27found%20a%20Pythagorean%20triple%3A%27%2C%20x%2C%20y%2C%20z%29%0A%20%20%20%20%20%20%20%20goto%20done%0A%20%20%20%20%20%20end%0A%20%20%20%20end%0A%20%20end%0Aend%0A%3A%3Adone%3A%3A\
  177. 123dzkako13
  178. MK MEGA: kaka12345
  179. TK MEGA mikuza22@gmail.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement