Advertisement
CaliberMag

Untitled

Oct 17th, 2020 (edited)
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. local AutoGUI = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Round = Instance.new("TextLabel")
  4. local Kills = Instance.new("TextLabel")
  5. local Autofarm = Instance.new("TextButton")
  6. local Sanity = Instance.new("TextLabel")
  7.  
  8. AutoGUI.Name = "AutoGUI"
  9. AutoGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10. AutoGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = AutoGUI
  13. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  14. Frame.BackgroundTransparency = 0.500
  15. Frame.Position = UDim2.new(0.872727275, 0, 0.625170946, 0)
  16. Frame.Size = UDim2.new(0, 200, 0, 211)
  17.  
  18. Round.Name = "Round"
  19. Round.Parent = Frame
  20. Round.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  21. Round.BackgroundTransparency = 1.000
  22. Round.Position = UDim2.new(0.0610606074, 0, 0.299291939, 0)
  23. Round.Size = UDim2.new(0, 175, 0, 45)
  24. Round.Font = Enum.Font.SourceSans
  25. Round.Text = "Round: [ 0 ]"
  26. Round.TextColor3 = Color3.fromRGB(255, 255, 255)
  27. Round.TextSize = 18.000
  28.  
  29. Kills.Name = "Kills"
  30. Kills.Parent = Frame
  31. Kills.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  32. Kills.BackgroundTransparency = 1.000
  33. Kills.Position = UDim2.new(0.0610606074, 0, 0.509359062, 0)
  34. Kills.Size = UDim2.new(0, 175, 0, 45)
  35. Kills.Font = Enum.Font.SourceSans
  36. Kills.Text = "Kills: [ 0 ]"
  37. Kills.TextColor3 = Color3.fromRGB(255, 255, 255)
  38. Kills.TextSize = 18.000
  39.  
  40. Autofarm.Name = "Autofarm"
  41. Autofarm.Parent = Frame
  42. Autofarm.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  43. Autofarm.BackgroundTransparency = 0.750
  44. Autofarm.Position = UDim2.new(0.0613406897, 0, 0.0656274855, 0)
  45. Autofarm.Size = UDim2.new(0, 175, 0, 50)
  46. Autofarm.Font = Enum.Font.SourceSans
  47. Autofarm.Text = "Autofarm: [ OFF ]"
  48. Autofarm.TextColor3 = Color3.fromRGB(255, 0, 0)
  49. Autofarm.TextSize = 18.000
  50.  
  51. Sanity.Name = "Sanity"
  52. Sanity.Parent = Frame
  53. Sanity.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  54. Sanity.BackgroundTransparency = 1.000
  55. Sanity.Position = UDim2.new(0.0610606074, 0, 0.722629189, 0)
  56. Sanity.Size = UDim2.new(0, 175, 0, 45)
  57. Sanity.Font = Enum.Font.SourceSans
  58. Sanity.Text = "Sanity: [ 100% ]"
  59. Sanity.TextColor3 = Color3.fromRGB(255, 255, 255)
  60. Sanity.TextSize = 18.000
  61.  
  62. local Alert = Instance.new("Sound", Frame)
  63. Alert.Name = "Alert"
  64. Alert.Volume = 2
  65. Alert.SoundId = "rbxassetid://5291343038"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement