ChaosityYT

Wanted GUI

May 29th, 2019
3,241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.92 KB | None | 0 0
  1. wait()
  2.  
  3. game.StarterGui:SetCore("SendNotification", {
  4. Title = "Loading"; -- Required. Has to be a string!
  5. Text = "Thank you for using Re-Wanted"; -- Required. Has to be a string!
  6. Icon = ""; -- Optional, defaults to "" (no icon)
  7. Duration = 5; -- Optional, defaults to 5 seconds
  8. })
  9.  
  10. local ReWanted = Instance.new("ScreenGui")
  11. local List = Instance.new("Frame")
  12. local Bank = Instance.new("TextButton")
  13. local DownTown = Instance.new("TextButton")
  14. local Gravity = Instance.new("TextButton")
  15. local GunShop = Instance.new("TextButton")
  16. local OutsideBank = Instance.new("TextButton")
  17. local Rock = Instance.new("TextButton")
  18. local Treasury = Instance.new("TextButton")
  19. local HeaderText1 = Instance.new("TextLabel")
  20. local HeaderText2 = Instance.new("TextLabel")
  21. local OpenClose = Instance.new("TextButton")
  22. Open=true
  23. GravityVar=true
  24.  
  25. ReWanted.Name = "Re-Wanted"
  26. ReWanted.Parent = game.CoreGui
  27. ReWanted.ResetOnSpawn = false
  28.  
  29. List.Name = "List"
  30. List.Parent = ReWanted
  31. List.Active = true
  32. List.BackgroundColor3 = Color3.new(0, 0.301961, 0.701961)
  33. List.BorderSizePixel = 0
  34. List.Position = UDim2.new(0.0638020858, 0, 0.0863787383, 0)
  35. List.Selectable = true
  36. List.Size = UDim2.new(0.0891927108, 0, 0.752491713, 0)
  37. List.Draggable=true
  38.  
  39. Bank.Name = "Bank"
  40. Bank.Parent = List
  41. Bank.BackgroundColor3 = Color3.new(0.533333, 0, 1)
  42. Bank.BackgroundTransparency = 0.69999998807907
  43. Bank.Position = UDim2.new(0.00700000022, 0, 0.150000006, 0)
  44. Bank.Size = UDim2.new(0, 134, 0, 37)
  45. Bank.Font = Enum.Font.SourceSansBold
  46. Bank.Text = "Bank"
  47. Bank.TextColor3 = Color3.new(0, 0, 0)
  48. Bank.TextScaled = true
  49. Bank.TextSize = 30
  50. Bank.TextStrokeColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  51. Bank.TextStrokeTransparency = 0
  52. Bank.TextWrapped = true
  53.  
  54. DownTown.Name = "DownTown"
  55. DownTown.Parent = List
  56. DownTown.BackgroundColor3 = Color3.new(0.533333, 0, 1)
  57. DownTown.BackgroundTransparency = 0.69999998807907
  58. DownTown.Position = UDim2.new(0.00700000022, 0, 0.75, 0)
  59. DownTown.Size = UDim2.new(0, 134, 0, 37)
  60. DownTown.Font = Enum.Font.SourceSansBold
  61. DownTown.Text = "Down Town"
  62. DownTown.TextColor3 = Color3.new(0, 0, 0)
  63. DownTown.TextScaled = true
  64. DownTown.TextSize = 30
  65. DownTown.TextStrokeColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  66. DownTown.TextStrokeTransparency = 0
  67. DownTown.TextWrapped = true
  68.  
  69. Gravity.Name = "Gravity"
  70. Gravity.Parent = List
  71. Gravity.BackgroundColor3 = Color3.new(0.533333, 0, 1)
  72. Gravity.BackgroundTransparency = 0.69999998807907
  73. Gravity.Position = UDim2.new(0.00700000022, 0, 0.870000005, 0)
  74. Gravity.Size = UDim2.new(0, 134, 0, 37)
  75. Gravity.Font = Enum.Font.SourceSansBold
  76. Gravity.Text = "Gravity"
  77. Gravity.TextColor3 = Color3.new(0, 0, 0)
  78. Gravity.TextScaled = true
  79. Gravity.TextSize = 30
  80. Gravity.TextStrokeColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  81. Gravity.TextStrokeTransparency = 0
  82. Gravity.TextWrapped = true
  83.  
  84. GunShop.Name = "GunShop"
  85. GunShop.Parent = List
  86. GunShop.BackgroundColor3 = Color3.new(0.533333, 0, 1)
  87. GunShop.BackgroundTransparency = 0.69999998807907
  88. GunShop.Position = UDim2.new(0.00700000022, 0, 0.50999999, 0)
  89. GunShop.Size = UDim2.new(0, 134, 0, 37)
  90. GunShop.Font = Enum.Font.SourceSansBold
  91. GunShop.Text = "Gun shop"
  92. GunShop.TextColor3 = Color3.new(0, 0, 0)
  93. GunShop.TextScaled = true
  94. GunShop.TextSize = 30
  95. GunShop.TextStrokeColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  96. GunShop.TextStrokeTransparency = 0
  97. GunShop.TextWrapped = true
  98.  
  99. OutsideBank.Name = "OutsideBank"
  100. OutsideBank.Parent = List
  101. OutsideBank.BackgroundColor3 = Color3.new(0.533333, 0, 1)
  102. OutsideBank.BackgroundTransparency = 0.69999998807907
  103. OutsideBank.Position = UDim2.new(0.00700000022, 0, 0.270000011, 0)
  104. OutsideBank.Size = UDim2.new(0, 134, 0, 37)
  105. OutsideBank.Font = Enum.Font.SourceSansBold
  106. OutsideBank.Text = "Outside of Bank"
  107. OutsideBank.TextColor3 = Color3.new(0, 0, 0)
  108. OutsideBank.TextScaled = true
  109. OutsideBank.TextSize = 30
  110. OutsideBank.TextStrokeColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  111. OutsideBank.TextStrokeTransparency = 0
  112. OutsideBank.TextWrapped = true
  113.  
  114. Rock.Name = "Rock"
  115. Rock.Parent = List
  116. Rock.BackgroundColor3 = Color3.new(0.533333, 0, 1)
  117. Rock.BackgroundTransparency = 0.69999998807907
  118. Rock.Position = UDim2.new(0.00700000022, 0, 0.629999995, 0)
  119. Rock.Size = UDim2.new(0, 134, 0, 37)
  120. Rock.Font = Enum.Font.SourceSansBold
  121. Rock.Text = "Invisible Rock"
  122. Rock.TextColor3 = Color3.new(0, 0, 0)
  123. Rock.TextScaled = true
  124. Rock.TextSize = 30
  125. Rock.TextStrokeColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  126. Rock.TextStrokeTransparency = 0
  127. Rock.TextWrapped = true
  128.  
  129. Treasury.Name = "Treasury"
  130. Treasury.Parent = List
  131. Treasury.BackgroundColor3 = Color3.new(0.533333, 0, 1)
  132. Treasury.BackgroundTransparency = 0.69999998807907
  133. Treasury.Position = UDim2.new(0.00700000022, 0, 0.389999986, 0)
  134. Treasury.Size = UDim2.new(0, 134, 0, 37)
  135. Treasury.Font = Enum.Font.SourceSansBold
  136. Treasury.Text = "Treasury"
  137. Treasury.TextColor3 = Color3.new(0, 0, 0)
  138. Treasury.TextScaled = true
  139. Treasury.TextSize = 30
  140. Treasury.TextStrokeColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  141. Treasury.TextStrokeTransparency = 0
  142. Treasury.TextWrapped = true
  143.  
  144. HeaderText1.Name = "HeaderText1"
  145. HeaderText1.Parent = List
  146. HeaderText1.Active = true
  147. HeaderText1.BackgroundColor3 = Color3.new(1, 1, 1)
  148. HeaderText1.BackgroundTransparency = 1
  149. HeaderText1.Position = UDim2.new(0, 0, -0.0279187821, 0)
  150. HeaderText1.Selectable = true
  151. HeaderText1.Size = UDim2.new(0, 137, 0, 54)
  152. HeaderText1.Font = Enum.Font.SourceSans
  153. HeaderText1.Text = "Re-Wanted"
  154. HeaderText1.TextColor3 = Color3.new(0, 0, 0)
  155. HeaderText1.TextScaled = true
  156. HeaderText1.TextSize = 20
  157. HeaderText1.TextStrokeColor3 = Color3.new(0.0980392, 0.729412, 1)
  158. HeaderText1.TextStrokeTransparency = 0.20000000298023
  159. HeaderText1.TextWrapped = true
  160.  
  161. HeaderText2.Name = "HeaderText2"
  162. HeaderText2.Parent = List
  163. HeaderText2.Active = true
  164. HeaderText2.BackgroundColor3 = Color3.new(1, 1, 1)
  165. HeaderText2.BackgroundTransparency = 1
  166. HeaderText2.Position = UDim2.new(0.0804226026, 0, 0.0583756417, 0)
  167. HeaderText2.Selectable = true
  168. HeaderText2.Size = UDim2.new(0, 115, 0, 45)
  169. HeaderText2.Font = Enum.Font.SourceSans
  170. HeaderText2.Text = "by iambots"
  171. HeaderText2.TextColor3 = Color3.new(0, 0, 0)
  172. HeaderText2.TextScaled = true
  173. HeaderText2.TextSize = 20
  174. HeaderText2.TextStrokeColor3 = Color3.new(0.0980392, 0.729412, 1)
  175. HeaderText2.TextStrokeTransparency = 0.20000000298023
  176. HeaderText2.TextWrapped = true
  177.  
  178. OpenClose.Name = "OpenClose"
  179. OpenClose.Parent = ReWanted
  180. OpenClose.BackgroundColor3 = Color3.new(0.0470588, 0.745098, 0.901961)
  181. OpenClose.BackgroundTransparency = 0.20000000298023
  182. OpenClose.BorderColor3 = Color3.new(0, 0.333333, 1)
  183. OpenClose.BorderSizePixel = 2
  184. OpenClose.Position = UDim2.new(0, 503, 0, 11)
  185. OpenClose.Size = UDim2.new(0, 80, 0, 34)
  186. OpenClose.Font = Enum.Font.ArialBold
  187. OpenClose.Text = "Close"
  188. OpenClose.TextColor3 = Color3.new(0, 0, 1)
  189. OpenClose.TextSize = 20
  190. OpenClose.TextStrokeColor3 = Color3.new(0, 0, 1)
  191. OpenClose.TextWrapped = true
  192. OpenClose.Draggable=true
  193.  
  194. Bank.MouseButton1Click:connect(function()
  195. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(405, 508, 1500)
  196. end)
  197.  
  198. GunShop.MouseButton1Down:connect(function()
  199. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(140, 40, 1045)
  200. end)
  201.  
  202. Rock.MouseButton1Click:Connect(function()
  203. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(876.8396, 38.9764442, 1438.96789)
  204. end)
  205.  
  206. Treasury.MouseButton1Down:connect(function()
  207. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(936.2724, 39.2983398, 1941.59705)
  208. end)
  209.  
  210. DownTown.MouseButton1Down:connect(function()
  211. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(698,56,911)
  212. end)
  213.  
  214. OutsideBank.MouseButton1Down:connect(function()
  215. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(509,40,1435)
  216. end)
  217.  
  218. Gravity.MouseButton1Down:connect(function()
  219. if GravityVar == true then
  220. GravityVar=false
  221. workspace.Gravity=80
  222. game.StarterGui:SetCore("SendNotification", {
  223. Title = "Gravity On"; -- Required. Has to be a string!
  224. Text = ""; -- Required. Has to be a string!
  225. Icon = ""; -- Optional, defaults to "" (no icon)
  226. Duration = 2; -- Optional, defaults to 5 seconds
  227. })
  228. else
  229. GravityVar=true
  230. workspace.Gravity=196.1999969
  231. game.StarterGui:SetCore("SendNotification", {
  232. Title = "Gravity Off"; -- Required. Has to be a string!
  233. Text = ""; -- Required. Has to be a string!
  234. Icon = ""; -- Optional, defaults to "" (no icon)
  235. Duration = 2; -- Optional, defaults to 5 seconds
  236. })
  237. end
  238. end)
  239.  
  240. OpenClose.MouseButton1Down:connect(function()
  241. if Open==true then
  242. Open=false
  243. OpenClose.Text="Open"
  244. List.Visible=false
  245. else
  246. Open=true
  247. OpenClose.Text="Close"
  248. List.Visible=true
  249. end
  250. end)
  251.  
  252. game.StarterGui:SetCore("SendNotification", {
  253. Title = "Loading"; -- Required. Has to be a string!
  254. Text = "ReWanted has finished loading. Made by iambots on roblox"; -- Required. Has to be a string!
  255. Icon = ""; -- Optional, defaults to "" (no icon)
  256. Duration = 5; -- Optional, defaults to 5 seconds
  257. })
Add Comment
Please, Sign In to add comment