Advertisement
Guest User

CBAUTOFARM

a guest
Oct 20th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. -- lol
  2. -- Cam#2404
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Mainframe = Instance.new("Frame")
  6. local team = Instance.new("TextButton")
  7. local qtele = Instance.new("TextButton")
  8. local Creator = Instance.new("TextLabel")
  9. --Properties:
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. ScreenGui.ResetOnSpawn = false
  13.  
  14. Mainframe.Name = "Mainframe"
  15. Mainframe.Parent = ScreenGui
  16. Mainframe.Active = true
  17. Mainframe.Draggable = true
  18. Mainframe.BackgroundColor3 = Color3.new(0.215686, 0.215686, 0.215686)
  19. Mainframe.BackgroundTransparency = 0.5
  20. Mainframe.Position = UDim2.new(0.0936967656, 0, 0.476678073, 0)
  21. Mainframe.Size = UDim2.new(0, 304, 0, 77)
  22.  
  23. team.Name = "team"
  24. team.Parent = Mainframe
  25. team.BackgroundColor3 = Color3.new(0.47451, 0.00784314, 0.0235294)
  26. team.BorderSizePixel = 0
  27. team.Position = UDim2.new(0.170058832, 0, 0.244369149, 0)
  28. team.Size = UDim2.new(0, 200, 0, 22)
  29. team.Font = Enum.Font.SourceSansBold
  30. team.Text = "SCP Team"
  31. team.TextColor3 = Color3.new(0, 0, 0)
  32. team.TextSize = 14
  33. team.MouseButton1Click:Connect(function()
  34. game.ReplicatedStorage.ChangeTeam:FireServer('Crimson')
  35. end)
  36.  
  37. qtele.Name = "qtele"
  38. qtele.Parent = Mainframe
  39. qtele.BackgroundColor3 = Color3.new(1, 1, 1)
  40. qtele.BorderSizePixel = 0
  41. qtele.Position = UDim2.new(0.170058832, 0, 0.53970933, 0)
  42. qtele.Size = UDim2.new(0, 200, 0, 22)
  43. qtele.Font = Enum.Font.SourceSansBold
  44. qtele.Text = "Gate Teleport"
  45. qtele.TextColor3 = Color3.new(0, 0, 0)
  46. qtele.TextSize = 14
  47. qtele.MouseButton1Click:connect(function()
  48. local me = game.Players.LocalPlayer.Character
  49.  
  50. me.HumanoidRootPart.CFrame = CFrame.new(373.65, 79.14, 1531.87)
  51. end)
  52.  
  53. Creator.Name = "Creator"
  54. Creator.Parent = Mainframe
  55. Creator.BackgroundColor3 = Color3.new(1, 1, 1)
  56. Creator.BackgroundTransparency = 1
  57. Creator.Position = UDim2.new(0.108552635, 0, 0.000315348298, 0)
  58. Creator.Size = UDim2.new(0, 238, 0, 15)
  59. Creator.Font = Enum.Font.SourceSansBold
  60. Creator.Text = "Containment Breach Quickfarm by Cam#2404"
  61. Creator.TextColor3 = Color3.new(1, 1, 1)
  62. Creator.TextScaled = true
  63. Creator.TextSize = 14
  64. Creator.TextWrapped = true
  65. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement