Colornapse_Themes

Untitled

Apr 4th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. ScreenGui = Instance.new("ScreenGui")
  2. main = Instance.new("Frame")
  3. TextLabel = Instance.new("TextLabel")
  4. DelTool = Instance.new("TextButton")
  5. V = Instance.new("TextButton")
  6. Close = Instance.new("TextButton")
  7.  
  8. ScreenGui.Parent = game.CoreGui
  9.  
  10. main.Name = "main"
  11. main.Parent = ScreenGui
  12. main.BackgroundColor3 = Color3.new(1, 0.823529, 0.101961)
  13. main.Position = UDim2.new(0.0462962948, 0, 0.693682969, 0)
  14. main.Size = UDim2.new(0, 371, 0, 217)
  15. main.Active = true
  16. main.Draggable = true
  17.  
  18. TextLabel.Parent = main
  19. TextLabel.BackgroundColor3 = Color3.new(0.227451, 0.380392, 0.87451)
  20. TextLabel.Size = UDim2.new(0, 371, 0, 50)
  21. TextLabel.Font = Enum.Font.SourceSansBold
  22. TextLabel.FontSize = Enum.FontSize.Size18
  23. TextLabel.Text = "Make a Cake Back for Seconds Gui By Hackmaster12"
  24. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  25. TextLabel.TextSize = 18
  26.  
  27. DelTool.Name = "DelTool"
  28. DelTool.Parent = main
  29. DelTool.BackgroundColor3 = Color3.new(0.8, 1, 0.360784)
  30. DelTool.Position = UDim2.new(0.229110509, 0, 0.253456235, 0)
  31. DelTool.Size = UDim2.new(0, 200, 0, 50)
  32. DelTool.Font = Enum.Font.SourceSansBold
  33. DelTool.FontSize = Enum.FontSize.Size18
  34. DelTool.Text = "Delete Tool"
  35. DelTool.TextColor3 = Color3.new(0, 0, 0)
  36. DelTool.TextScaled = true
  37. DelTool.TextSize = 15
  38. DelTool.TextWrapped = true
  39. DelTool.MouseButton1Down:connect(function()
  40. local epic = Instance.new("Tool")
  41. local dab = Instance.new("Part")
  42. local plr = game.Players.LocalPlayer
  43. local tar_obj = nil
  44. local ok = game.ReplicatedStorage.DragTools.RightPosition
  45. dab.Parent = epic
  46. dab.Size = Vector3.new(0.2, 0.2, 0.2)
  47. epic.Parent = plr.Backpack
  48. epic.Name = "Delete"
  49. dab.Name = "Handle"
  50. epic.Equipped:Connect(function(m_S)
  51. print("m")
  52.  
  53. m_S.Button1Down:Connect(function()
  54. print("M")
  55.  
  56. tar_obj = m_S.Target
  57.  
  58. ok:FireServer(tar_obj, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))
  59.  
  60. end)
  61. end)
  62. end)
  63.  
  64. V.Name = "V"
  65. V.Parent = main
  66. V.BackgroundColor3 = Color3.new(0.8, 1, 0.360784)
  67. V.Position = UDim2.new(0.229110509, 0, 0.516129076, 0)
  68. V.Size = UDim2.new(0, 200, 0, 50)
  69. V.Font = Enum.Font.SourceSansBold
  70. V.FontSize = Enum.FontSize.Size18
  71. V.Text = "Void Others"
  72. V.TextColor3 = Color3.new(0, 0, 0)
  73. V.TextScaled = true
  74. V.TextSize = 15
  75. V.TextWrapped = true
  76. V.MouseButton1Down:connect(function()
  77. for i,v in pairs(game.Players:GetChildren()) do
  78. if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
  79. game.ReplicatedStorage.DragTools.RightPosition:FireServer(v.Character.HumanoidRootPart, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000))
  80. end
  81. end
  82. end)
  83.  
  84. Close.Name = "Close"
  85. Close.Parent = main
  86. Close.BackgroundColor3 = Color3.new(0.8, 1, 0.360784)
  87. Close.Position = UDim2.new(0.894878745, 0, -0.138248846, 0)
  88. Close.Size = UDim2.new(0, 39, 0, 30)
  89. Close.Font = Enum.Font.SourceSansBold
  90. Close.FontSize = Enum.FontSize.Size18
  91. Close.Text = "X"
  92. Close.TextColor3 = Color3.new(0, 0, 0)
  93. Close.TextScaled = true
  94. Close.TextSize = 15
  95. Close.TextWrapped = true
  96. Close.MouseButton1Down:connect(function()
  97. main.Visible = false
  98. end)
Add Comment
Please, Sign In to add comment