Advertisement
Scriptorz5

bandit sim gui

Nov 25th, 2018
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextButton = Instance.new("TextButton")
  4. local Credits = Instance.new("TextLabel")
  5. local TextButton_2 = Instance.new("TextButton")
  6. --Properties:
  7. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  8.  
  9. Frame.Parent = ScreenGui
  10. Frame.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902)
  11. Frame.BackgroundTransparency = 0.10000000149012
  12. Frame.BorderColor3 = Color3.new(0.352941, 0.352941, 0.352941)
  13. Frame.BorderSizePixel = 5
  14. Frame.Position = UDim2.new(0.626002133, 0, 0.78906554, 0)
  15. Frame.Size = UDim2.new(0, 218, 0, 109)
  16.  
  17. TextButton.Parent = Frame
  18. TextButton.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  19. TextButton.BackgroundTransparency = 0.30000001192093
  20. TextButton.BorderColor3 = Color3.new(0.588235, 0.588235, 0.588235)
  21. TextButton.BorderSizePixel = 2
  22. TextButton.Position = UDim2.new(0.0464779884, 0, 0.101648398, 0)
  23. TextButton.Size = UDim2.new(0, 85, 0, 85)
  24. TextButton.Text = "TP to Pearl Chest"
  25. TextButton.TextColor3 = Color3.new(0, 0, 0)
  26. TextButton.TextScaled = true
  27. TextButton.TextSize = 10
  28. TextButton.TextStrokeColor3 = Color3.new(1, 1, 1)
  29. TextButton.TextStrokeTransparency = 0.80000001192093
  30. TextButton.TextWrapped = true
  31.  
  32. Credits.Name = "Credits"
  33. Credits.Parent = Frame
  34. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  35. Credits.BackgroundTransparency = 1
  36. Credits.Position = UDim2.new(0.404276192, 0, -0.237800837, 0)
  37. Credits.Size = UDim2.new(0, 40, 0, 25)
  38. Credits.Font = Enum.Font.SourceSans
  39. Credits.Text = "GUI BY QAISG (I DID NOT MAKE SCRIPT)"
  40. Credits.TextColor3 = Color3.new(0, 0, 0)
  41. Credits.TextSize = 11
  42.  
  43. TextButton_2.Parent = Frame
  44. TextButton_2.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  45. TextButton_2.BackgroundTransparency = 0.30000001192093
  46. TextButton_2.BorderColor3 = Color3.new(0.588235, 0.588235, 0.588235)
  47. TextButton_2.BorderSizePixel = 2
  48. TextButton_2.Position = UDim2.new(0.569413781, 0, 0.101648398, 0)
  49. TextButton_2.Size = UDim2.new(0, 85, 0, 85)
  50. TextButton_2.Text = "All Enemies Torso"
  51. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  52. TextButton_2.TextScaled = true
  53. TextButton_2.TextSize = 10
  54. TextButton_2.TextStrokeColor3 = Color3.new(1, 1, 1)
  55. TextButton_2.TextStrokeTransparency = 0.80000001192093
  56. TextButton_2.TextWrapped = true
  57. -- Scripts:
  58. function SCRIPT_ORYY67_FAKESCRIPT() -- TextButton.Script
  59. getfenv().script = Instance.new('Script', TextButton)
  60.  
  61. local Skya = script.Parent
  62. local me = game.Players.LocalPlayer.Character
  63. local Pearl = game.Workspace.PearlChests.Pearl.Union
  64.  
  65. Skya.MouseButton1Click:Connect(function()
  66. me.HumanoidRootPart.CFrame = CFrame.new(Pearl.Position.X, Pearl.Position.Y, Pearl.Position.Z)
  67. end)
  68.  
  69. end
  70. coroutine.resume(coroutine.create(SCRIPT_ORYY67_FAKESCRIPT))
  71. function SCRIPT_IVIG78_FAKESCRIPT() -- TextButton_2.Script
  72. getfenv().script = Instance.new('Script', TextButton_2)
  73.  
  74. local Skya = script.Parent
  75.  
  76. Skya.MouseButton1Click:Connect(function()
  77. if game.Players.LocalPlayer.Character:FindFirstChild("BanditShirt") then
  78. for i, v in pairs(game.Players:GetPlayers()) do
  79. if v ~= game.Players.LocalPlayer and (not v.Character:FindFirstChild("BanditShirt")) then
  80. v.Character.UpperTorso.Anchored = true
  81. v.Character.UpperTorso.Position = game.Players.LocalPlayer.Character.UpperTorso.Position + Vector3.new(math.random(-5,5),0,math.random(-5,5))
  82. end
  83. end
  84. elseif game.Players.LocalPlayer.Character:FindFirstChild("CowboyShirt") then
  85. for i, v in pairs(game.Players:GetPlayers()) do
  86. if v ~= game.Players.LocalPlayer and (not v.Character:FindFirstChild("CowboyShirt")) then
  87. v.Character.UpperTorso.Anchored = true
  88. v.Character.UpperTorso.Position = game.Players.LocalPlayer.Character.UpperTorso.Position + Vector3.new(math.random(-5,5),0,math.random(-5,5))
  89. end
  90. end
  91. end
  92. end)
  93.  
  94. end
  95. coroutine.resume(coroutine.create(SCRIPT_IVIG78_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement