Advertisement
Exploiter3030

Untitled

Feb 25th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1.  
  2. local gui = Instance.new("BillboardGui")
  3. local gui2 = Instance.new("BillboardGui")
  4. local label = Instance.new("TextLabel")
  5. local tool = Instance.new("Tool")
  6. local handle = Instance.new("Part")
  7. local tool2 = Instance.new("Tool")
  8. local handle2 = Instance.new("Part")
  9. local explosion = Instance.new("Explosion")
  10. local tool3 = Instance.new("Tool")
  11. local handle3 = Instance.new("Part")
  12.  
  13.  
  14. gui.Parent = owner.Character.Head
  15. gui.Size = UDim2.new(0, 250, 0, 250)
  16.  
  17. label.Parent = gui
  18. label.Size = UDim2.new(0, 250, 0, 55)
  19. label.BackgroundColor3 = Color3.new(255, 0, 0)
  20. label.Font = "SciFi"
  21. label.TextSize = 40
  22. label.Text = "Hatuey_Yael"
  23. owner.Chatted:connect(function(msg)
  24.  
  25. label.Text = msg
  26. label.TextSize = 25
  27. label.TextWrapped = true
  28. wait(3)
  29. label.TextSize = 40
  30. label.Text = "Hatuey_Yael"
  31. label.TextWrapped = false
  32. end)
  33.  
  34. tool.Parent = owner.Backpack
  35. tool.Name = "Color Changing Brick"
  36. tool.Activated:connect(function()
  37. handle.BrickColor = BrickColor.new("Bright green")
  38. handle.Size = Vector3.new(4, 6, 5)
  39. wait(0.2)
  40. handle.BrickColor = BrickColor.new("Really red")
  41. handle.Size = Vector3.new(1, 7, 10)
  42. wait(0.2)
  43. handle.BrickColor = BrickColor.new("Bright blue")
  44. handle.Size = Vector3.new(3, 4, 6)
  45. wait(0.2)
  46. handle.BrickColor = BrickColor.new("Bright red")
  47. handle.Size = Vector3.new(3, 6, 1)
  48. wait(0.2)
  49. handle.BrickColor = BrickColor.new("Bright orange")
  50. handle.Size = Vector3.new(4, 2, 6)
  51. wait(0.2)
  52. handle.BrickColor = BrickColor.new("Baby blue")
  53. handle.Size = Vector3.new(4, 8, 7)
  54. wait(0.2)
  55. handle.BrickColor = BrickColor.new("Dark green")
  56. handle.Size = Vector3.new(2, 2, 2)
  57. end)
  58.  
  59. handle.Parent = tool
  60. handle.Name = "Handle"
  61. handle.BrickColor = BrickColor.new("Dark green")
  62. handle.Size = Vector3.new(2, 2, 2)
  63. handle.Material = "Plastic"
  64.  
  65. tool2.Parent = owner.Backpack
  66. tool2.Name = "Teleport Tool"
  67. tool2.Activated:connect(function()
  68. owner.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y, Mouse.Hit.z)
  69. end)
  70.  
  71. handle2.Parent = tool2
  72. handle2.Name = "Handle"
  73. handle2.BrickColor = BrickColor.new("Really black")
  74. handle2.Size = Vector3.new(2, 2, 2)
  75. handle2.Material = "Plastic"
  76.  
  77. tool3.Parent = owner.Backpack
  78. tool3.Name = "Fake Admin Pad Tool"
  79. tool3.Activated:connect(function()
  80. local label2 = Instance.new("TextLabel")
  81. local gui2 = Instance.new("BillboardGui")
  82. local adminpad = Instance.new("Part")
  83. adminpad.Parent = owner.Character.Head
  84. adminpad.Position = Vector3.new(Mouse.Hit.x, Mouse.Hit.y, Mouse.Hit.z)
  85. adminpad.BrickColor = BrickColor.new("Really black")
  86. adminpad.Size = Vector3.new(4, 0.4, 4)
  87. adminpad.Anchored = true
  88. adminpad.Touched:connect(function(p)
  89. local humanoid = p.Parent:FindFirstChild("Humanoid")
  90. if humanoid ~= nil then
  91. local weld = Instance.new("Weld")
  92. weld.Part0 = p
  93. weld.Part1 = adminpad
  94. weld.Parent = adminpad
  95. end
  96. end)
  97.  
  98. gui2.Parent = adminpad
  99. gui2.Size = UDim2.new(0, 250, 0, 250)
  100.  
  101. label2.Parent = gui2
  102. label2.Size = UDim2.new(0, 250, 0, 55)
  103. label2.BackgroundTransparency = 1
  104. label2.TextSize = 40
  105. label2.TextColor3 = Color3.new(255, 0, 0)
  106. label2.Text = "Touch For Admin"
  107.  
  108.  
  109.  
  110. end)
  111.  
  112. handle3.Parent = tool3
  113. handle3.Name = "Handle"
  114. handle3.BrickColor = BrickColor.new("Royal purple")
  115. handle3.Size = Vector3.new(2, 2, 2)
  116. handle3.Material = "Plastic"
  117.  
  118. Mouse.KeyDown:connect(function(key)
  119. if key == "r" then
  120. explosion.Parent = owner.Character.HumanoidRootPart
  121. explosion.Position = Vector3.new(Mouse.Hit.x, Mouse.Hit.y, Mouse.Hit.z)
  122. end
  123. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement