Advertisement
Guest User

[Update]Script Rumble Quest[OP]

a guest
Jan 3rd, 2020
13,344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. --Made By Ex Ryuuz
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local main = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local autokill = Instance.new("TextButton")
  6. local speed = Instance.new("TextButton")
  7. local close = Instance.new("TextButton")
  8. local opemain = Instance.new("Frame")
  9. local open = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. main.Name = "main"
  17. main.Parent = ScreenGui
  18. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  19. main.Position = UDim2.new(0.0127591677, 0, 0.456035733, 0)
  20. main.Size = UDim2.new(0, 278, 0, 161)
  21. main.Visible = false
  22. main.Active = true
  23. main.Draggable = true
  24.  
  25. TextLabel.Parent = main
  26. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  27. TextLabel.Size = UDim2.new(0, 278, 0, 37)
  28. TextLabel.Font = Enum.Font.SourceSans
  29. TextLabel.Text = "GUI Ex Ryuuz"
  30. TextLabel.TextColor3 = Color3.fromRGB(170, 0, 0)
  31. TextLabel.TextSize = 20.000
  32.  
  33. autokill.Name = "autokill"
  34. autokill.Parent = main
  35. autokill.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  36. autokill.Position = UDim2.new(0.0719424486, 0, 0.29192546, 0)
  37. autokill.Size = UDim2.new(0, 236, 0, 37)
  38. autokill.Font = Enum.Font.SourceSans
  39. autokill.Text = "Auto kill"
  40. autokill.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. autokill.TextScaled = true
  42. autokill.TextSize = 20.000
  43. autokill.TextWrapped = true
  44. autokill.MouseButton1Down:connect(function()
  45. _G.Settings = {
  46. Lobby = {
  47. ["Difficulty"] = "Easy", -- Difficulty for Dungeon
  48. ["PartyOnly"] = true, -- Dont change if you want to create dungeon privately
  49. ["Hardcore"] = true, --Hardcore of Dungeon
  50. ["Location"] = "Frozen Depths" -- Where to Farm
  51. },
  52. AutoSell = {
  53. ["Enabled"] = true, -- true == on , false == off , Gonna sell all items except legendaries and equippeds
  54. ["Sell Weapons"] = true, -- Auto Sell Swords
  55. ["Sell Armors"] = true, -- Auto Sell Armors
  56. ["Sell Abilities"] = true, -- Auto Sell Abilities
  57. ["Sell Cosmetics"] = true -- Auto Sell Cosmetics
  58. },
  59. AutoUpgrade = {
  60. ["Enabled"] = false, -- true == on , false == off , Gonna upgrade items which are chosen below
  61. ["Upgrade Weapon"] = true, -- Auto Upgrade Weapon
  62. ["Upgrade Armor"] = true -- Auto Upgrade Armor
  63. },
  64. AutoPoint = {
  65. ["Enabled"] = true, -- true == on , false == off , Gonna auto put points which you chose below
  66. ["Point to Put"] = "Strength" -- Point to Auto Put
  67. },
  68. BugFixer = {
  69. ["Enabled"] = true, -- true == on , false == off , Gonna get back to lobby after seconds which you set below passes, good if you want to stay 24/7 afk
  70. ["Leave Dungeon After"] = 300 -- Seonds to leave after like if you clear dungeon in 2 mins ( 120 seconds ) put it to 200
  71. },
  72. MoreSettings = {
  73. ["Wait Time"] = 5, -- Wait time before auto executing , you can test it by yourself since it states for your pc
  74. ["Fast Leave"] = true -- Gonna leave asap when dungeon ends / boss dies ( saves about 30 secs per dungeon )
  75. }
  76. }
  77.  
  78. loadstring(game:HttpGet("http://pastebin.com/raw/kRLbZPpZ", true))()
  79. end)
  80.  
  81. speed.Name = "speed"
  82. speed.Parent = main
  83. speed.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  84. speed.Position = UDim2.new(0.0719424486, 0, 0.652173877, 0)
  85. speed.Size = UDim2.new(0, 236, 0, 37)
  86. speed.Font = Enum.Font.SourceSans
  87. speed.Text = "Speed"
  88. speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  89. speed.TextScaled = true
  90. speed.TextSize = 20.000
  91. speed.TextWrapped = true
  92. speed.MouseButton1Down:connect(function()
  93. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 60
  94. end)
  95.  
  96. close.Name = "close"
  97. close.Parent = main
  98. close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  99. close.Position = UDim2.new(0.769784153, 0, 0, 0)
  100. close.Size = UDim2.new(0, 64, 0, 37)
  101. close.Font = Enum.Font.SourceSans
  102. close.Text = "X"
  103. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  104. close.TextSize = 30.000
  105. close.MouseButton1Down:connect(function()
  106. main.Visible = false
  107. opemain.Visible = true
  108. end)
  109.  
  110. opemain.Name = "opemain"
  111. opemain.Parent = ScreenGui
  112. opemain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  113. opemain.Position = UDim2.new(0.0191387534, 0, 0.360655725, 0)
  114. opemain.Size = UDim2.new(0, 102, 0, 37)
  115. opemain.Active = true
  116. opemain.Draggable = true
  117.  
  118. open.Name = "open"
  119. open.Parent = opemain
  120. open.BackgroundColor3 = Color3.fromRGB(85, 0, 0)
  121. open.Position = UDim2.new(-0.0392156839, 0, 0, 0)
  122. open.Size = UDim2.new(0, 109, 0, 37)
  123. open.Font = Enum.Font.SourceSans
  124. open.Text = "Open"
  125. open.TextColor3 = Color3.fromRGB(170, 0, 0)
  126. open.TextSize = 30.000
  127. open.MouseButton1Down:connect(function()
  128. opemain.Visible = false
  129. main.Visible = true
  130. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement