Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. local Y = Instance.new("ScreenGui")
  2. local Mother = Instance.new("Frame")
  3. local Combat = Instance.new("TextButton")
  4. local KiStats = Instance.new("TextButton")
  5. local Defense = Instance.new("TextButton")
  6. local God = Instance.new("TextButton")
  7. local Charge = Instance.new("TextButton")
  8. --Properties:
  9. Y.Name = "Y"
  10. Y.Parent = game.CoreGui
  11.  
  12. Mother.Name = "Mother"
  13. Mother.Parent = Y
  14. Mother.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Mother.Position = UDim2.new(0.748996019, 0, 0.413284123, 0)
  16. Mother.Size = UDim2.new(0, 249, 0, 216)
  17. Mother.Style = Enum.FrameStyle.RobloxRound
  18. Mother.Draggable = true
  19. Mother.Active = true
  20.  
  21. Combat.Name = "Combat"
  22. Combat.Parent = Mother
  23. Combat.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Combat.BackgroundTransparency = 1
  25. Combat.BorderColor3 = Color3.new(0.207843, 0, 0)
  26. Combat.Position = UDim2.new(0.0138691999, 0, -0.000152729452, 0)
  27. Combat.Size = UDim2.new(0, 115, 0, 39)
  28. Combat.Font = Enum.Font.SciFi
  29. Combat.Text = "Combat"
  30. Combat.TextColor3 = Color3.new(0, 0, 0)
  31. Combat.TextScaled = true
  32. Combat.TextSize = 12
  33. Combat.TextWrapped = true
  34. Combat.MouseButton1Down:connect(function()
  35. game:GetService"RunService".RenderStepped:Connect(function()
  36. game.Workspace[game.Players.LocalPlayer.Name].Punch.RemoteEvent:FireServer(true)
  37. end)
  38. end)
  39.  
  40. KiStats.Name = "KiStats"
  41. KiStats.Parent = Mother
  42. KiStats.BackgroundColor3 = Color3.new(1, 1, 1)
  43. KiStats.BackgroundTransparency = 1
  44. KiStats.BorderColor3 = Color3.new(0.207843, 0, 0)
  45. KiStats.Position = UDim2.new(0.535957515, 0, -0.000819001347, 0)
  46. KiStats.Size = UDim2.new(0, 115, 0, 39)
  47. KiStats.Font = Enum.Font.SciFi
  48. KiStats.Text = "Ki"
  49. KiStats.TextColor3 = Color3.new(0, 0, 0)
  50. KiStats.TextScaled = true
  51. KiStats.TextSize = 12
  52. KiStats.TextWrapped = true
  53. KiStats.MouseButton1Down:connect(function()
  54. game:GetService"RunService".RenderStepped:Connect(function()
  55. game.ReplicatedStorage.Deseo.Ki:InvokeServer()
  56. end)
  57. end)
  58.  
  59. Defense.Name = "Defense"
  60. Defense.Parent = Mother
  61. Defense.BackgroundColor3 = Color3.new(1, 1, 1)
  62. Defense.BackgroundTransparency = 1
  63. Defense.BorderColor3 = Color3.new(0.207843, 0, 0)
  64. Defense.Position = UDim2.new(0.0138691999, 0, 0.263736159, 0)
  65. Defense.Size = UDim2.new(0, 115, 0, 39)
  66. Defense.Font = Enum.Font.SciFi
  67. Defense.Text = "Defense"
  68. Defense.TextColor3 = Color3.new(0, 0, 0)
  69. Defense.TextScaled = true
  70. Defense.TextSize = 12
  71. Defense.TextWrapped = true
  72. Defense.MouseButton1Down:connect(function()
  73. game:GetService"RunService".RenderStepped:Connect(function()
  74. game.ReplicatedStorage.Training.Defensa:InvokeServer(game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart, "listher-es-guapo")
  75. end)
  76. end)
  77.  
  78. God.Name = "God"
  79. God.Parent = Mother
  80. God.BackgroundColor3 = Color3.new(1, 1, 1)
  81. God.BackgroundTransparency = 1
  82. God.BorderColor3 = Color3.new(0.207843, 0, 0)
  83. God.Position = UDim2.new(0.530937493, 0, 0.260558635, 0)
  84. God.Size = UDim2.new(0, 115, 0, 39)
  85. God.Font = Enum.Font.SciFi
  86. God.Text = "God"
  87. God.TextColor3 = Color3.new(0, 0, 0)
  88. God.TextScaled = true
  89. God.TextSize = 12
  90. God.TextWrapped = true
  91. God.MouseButton1Down:connect(function()
  92. game.ReplicatedStorage.Deseo.God:InvokeServer()
  93. end)
  94.  
  95. Charge.Name = "Charge"
  96. Charge.Parent = Mother
  97. Charge.BackgroundColor3 = Color3.new(1, 1, 1)
  98. Charge.BackgroundTransparency = 1
  99. Charge.BorderColor3 = Color3.new(0.207843, 0, 0)
  100. Charge.Position = UDim2.new(0.0824180543, 0, 0.590861857, 0)
  101. Charge.Size = UDim2.new(0, 194, 0, 39)
  102. Charge.Font = Enum.Font.SciFi
  103. Charge.Text = "Charge"
  104. Charge.TextColor3 = Color3.new(0, 0, 0)
  105. Charge.TextScaled = true
  106. Charge.TextSize = 12
  107. Charge.TextWrapped = true
  108. Charge.MouseButton1Down:connect(function()
  109. game.Workspace[game.Players.LocalPlayer.Name]["Ki Charge"].lal:FireServer()
  110. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement