Advertisement
Guest User

Mineverse Gui 2019 OP

a guest
Oct 22nd, 2019
5,253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. -- Created by MrHax#2764 (This is my first Gui so you know why my UI is messy lol)
  2. -- Instances:
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local guititle = Instance.new("TextLabel")
  7. local KillAura = Instance.new("TextButton")
  8. local Nofalldamage = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(0.0627451, 0.615686, 0.0313726)
  16. Frame.Position = UDim2.new(0.0434782617, 0, 0.621513963, 0)
  17. Frame.Size = UDim2.new(0, 184, 0, 151)
  18.  
  19. guititle.Name = "gui title"
  20. guititle.Parent = Frame
  21. guititle.BackgroundColor3 = Color3.new(1, 1, 1)
  22. guititle.Size = UDim2.new(0, 184, 0, 30)
  23. guititle.Font = Enum.Font.SourceSans
  24. guititle.Text = "Mineverse Gui"
  25. guititle.TextColor3 = Color3.new(0, 0, 0)
  26. guititle.TextSize = 14
  27. guititle.Active = true
  28. guititle.Draggable = false
  29.  
  30. KillAura.Name = "Kill Aura"
  31. KillAura.Parent = ScreenGui
  32. KillAura.BackgroundColor3 = Color3.new(0.156863, 1, 0.113725)
  33. KillAura.Position = UDim2.new(0.0827489495, 0, 0.723107576, 0)
  34. KillAura.Size = UDim2.new(0, 127, 0, 28)
  35. KillAura.Font = Enum.Font.SourceSans
  36. KillAura.Text = "Kill Aura"
  37. KillAura.TextColor3 = Color3.new(0, 0, 0)
  38. KillAura.TextSize = 14
  39. KillAura.MouseButton1Down:connect(function()
  40. local player = game.Players.LocalPlayer
  41. while wait() do
  42. for i,v in pairs(game.Players:GetPlayers()) do
  43. if v ~= player and v.Character and v.Character:FindFirstChild("HumanoidRootPart") and player:DistanceFromCharacter(v.Character.HumanoidRootPart.Position) < 16 then
  44. game.ReplicatedStorage.GameRemotes.Attack:InvokeServer(v.Character)
  45. end
  46. end
  47. end
  48. end)
  49.  
  50. Nofalldamage.Name = "No fall damage"
  51. Nofalldamage.Parent = ScreenGui
  52. Nofalldamage.BackgroundColor3 = Color3.new(0.156863, 1, 0.0627451)
  53. Nofalldamage.Position = UDim2.new(0.0827489495, 0, 0.796812773, 0)
  54. Nofalldamage.Size = UDim2.new(0, 127, 0, 29)
  55. Nofalldamage.Font = Enum.Font.SourceSans
  56. Nofalldamage.Text = "No fall damage"
  57. Nofalldamage.TextColor3 = Color3.new(0, 0, 0)
  58. Nofalldamage.TextSize = 14
  59. Nofalldamage.MouseButton1Down:connect(function()
  60. game.ReplicatedStorage.GameRemotes.RequestDamage:Destroy()
  61. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement