Advertisement
ScriptCrew

xd

Mar 24th, 2018
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.14 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local TextButton = Instance.new("TextLabel")
  5. local TextButton_2 = Instance.new("TextButton")
  6. local TextButton_3 = Instance.new("TextButton")
  7. local BT = Instance.new("TextLabel")
  8. -- Properties
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. TextButton.Parent = ScreenGui
  13. TextButton.BackgroundColor3 = Color3.new(0.180392, 0.176471, 0.2)
  14. TextButton.BorderColor3 = Color3.new(0.180392, 0.176471, 0.2)
  15. TextButton.Position = UDim2.new(0, -300, 0, 259)
  16. TextButton.Size = UDim2.new(0, 280, 0, 53)
  17. TextButton.Font = Enum.Font.SourceSans
  18. TextButton.Text = "Mohammadyas just dropped 1.000"
  19. TextButton.TextColor3 = Color3.new(1, 1, 1)
  20. TextButton.TextSize = 22
  21. TextButton.TextWrapped = true
  22. TextButton.TextXAlignment = Enum.TextXAlignment.Left
  23. TextButton.TextYAlignment = Enum.TextYAlignment.Top
  24.  
  25. TextButton_2.Parent = TextButton
  26. TextButton_2.BackgroundColor3 = Color3.new(0.94902, 0.235294, 0.894118)
  27. TextButton_2.BorderColor3 = Color3.new(0.94902, 0.235294, 0.894118)
  28. TextButton_2.Position = UDim2.new(0, 0, 0.56461823, 0)
  29. TextButton_2.Size = UDim2.new(0, 280, 0, 23)
  30. TextButton_2.Font = Enum.Font.SourceSans
  31. TextButton_2.Text = "Teleport Money"
  32. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  33. TextButton_2.TextSize = 28
  34. TextButton_2.TextWrapped = true
  35. TextButton_2.MouseButton1Click:connect(function()
  36.    
  37. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.DroppedCash.Cash.Part.CFrame
  38.  
  39.  
  40. end)
  41.  
  42.  
  43. BT.Name = "BT"
  44. BT.Parent = ScreenGui
  45. BT.BackgroundColor3 = Color3.new(0.180392, 0.176471, 0.2)
  46. BT.BorderColor3 = Color3.new(0.180392, 0.176471, 0.2)
  47. BT.Position = UDim2.new(0, -300, 0, 194)
  48. BT.Size = UDim2.new(0, 280, 0, 53)
  49. BT.Font = Enum.Font.SourceSans
  50. BT.Text = "Top Most Bounty is 2000"
  51. BT.TextColor3 = Color3.new(1, 1, 1)
  52. BT.TextSize = 22
  53. BT.TextWrapped = true
  54. BT.TextXAlignment = Enum.TextXAlignment.Left
  55. BT.TextYAlignment = Enum.TextYAlignment.Top
  56.  
  57.  
  58.  
  59.  
  60. TextButton_3.Parent = BT
  61. TextButton_3.BackgroundColor3 = Color3.new(0.94902, 0.235294, 0.894118)
  62. TextButton_3.BorderColor3 = Color3.new(0.94902, 0.235294, 0.894118)
  63. TextButton_3.Position = UDim2.new(0, 0, 0.56461823, 0)
  64. TextButton_3.Size = UDim2.new(0, 280, 0, 23)
  65. TextButton_3.Font = Enum.Font.SourceSans
  66. TextButton_3.Text = "Goto Player"
  67. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  68. TextButton_3.TextSize = 28
  69. TextButton_3.TextWrapped = true
  70. TextButton_3.MouseButton1Click:connect(function()
  71.     if game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board:FindFirstChild('Preset') then
  72.        
  73. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService('Players')[game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board.Preset.Stats.PlayerName.Text].Character.HumanoidRootPart.CFrame
  74. end
  75. end)
  76.  
  77. while wait() do
  78.     if game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board:FindFirstChild('Preset') then
  79.         BT:TweenPosition(UDim2.new(0, 0,0, 200),"In","Quad")
  80.         BT.Text = "Top Most Bounty is "..game.Workspace.MostWanted.MostWanted.Background.MostWanted.Board.Preset.Stats.Bounty.Text
  81.    
  82.         else
  83. BT:TweenPosition(UDim2.new(0, -300,0, 200),"In","Quad")
  84. end
  85.  
  86.  
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement