Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 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.  
  20. Combat.Name = "Combat"
  21. Combat.Parent = Mother
  22. Combat.BackgroundColor3 = Color3.new(1, 1, 1)
  23. Combat.BackgroundTransparency = 1
  24. Combat.BorderColor3 = Color3.new(0.207843, 0, 0)
  25. Combat.Position = UDim2.new(0.0138691999, 0, -0.000152729452, 0)
  26. Combat.Size = UDim2.new(0, 115, 0, 39)
  27. Combat.Font = Enum.Font.SciFi
  28. Combat.Text = "Combat"
  29. Combat.TextColor3 = Color3.new(0, 0, 0)
  30. Combat.TextScaled = true
  31. Combat.TextSize = 12
  32. Combat.TextWrapped = true
  33. Combat.MouseButton1Down:connect(function()
  34. game:GetService"RunService".RenderStepped:Connect(function()
  35. game.Workspace[game.Players.LocalPlayer.Name].Punch.RemoteEvent:FireServer(true)
  36. end)
  37. end)
  38.  
  39. KiStats.Name = "KiStats"
  40. KiStats.Parent = Mother
  41. KiStats.BackgroundColor3 = Color3.new(1, 1, 1)
  42. KiStats.BackgroundTransparency = 1
  43. KiStats.BorderColor3 = Color3.new(0.207843, 0, 0)
  44. KiStats.Position = UDim2.new(0.535957515, 0, -0.000819001347, 0)
  45. KiStats.Size = UDim2.new(0, 115, 0, 39)
  46. KiStats.Font = Enum.Font.SciFi
  47. KiStats.Text = "Ki"
  48. KiStats.TextColor3 = Color3.new(0, 0, 0)
  49. KiStats.TextScaled = true
  50. KiStats.TextSize = 12
  51. KiStats.TextWrapped = true
  52. KiStats.MouseButton1Down:connect(function()
  53. game.ReplicatedStorage.Deseo.Ki:InvokeServer()
  54. game:GetService"RunService".RenderStepped:Connect(function()
  55. end)
  56. end)
  57.  
  58. Defense.Name = "Defense"
  59. Defense.Parent = Mother
  60. Defense.BackgroundColor3 = Color3.new(1, 1, 1)
  61. Defense.BackgroundTransparency = 1
  62. Defense.BorderColor3 = Color3.new(0.207843, 0, 0)
  63. Defense.Position = UDim2.new(0.0138691999, 0, 0.263736159, 0)
  64. Defense.Size = UDim2.new(0, 115, 0, 39)
  65. Defense.Font = Enum.Font.SciFi
  66. Defense.Text = "Defense"
  67. Defense.TextColor3 = Color3.new(0, 0, 0)
  68. Defense.TextScaled = true
  69. Defense.TextSize = 12
  70. Defense.TextWrapped = true
  71. Defense.MouseButton1Down:connect(function()
  72. game:GetService"RunService".RenderStepped:Connect(function()
  73. game.ReplicatedStorage.Training.Defensa:InvokeServer(game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart, "listher-es-guapo")
  74. end)
  75. end)
  76.  
  77. God.Name = "God"
  78. God.Parent = Mother
  79. God.BackgroundColor3 = Color3.new(1, 1, 1)
  80. God.BackgroundTransparency = 1
  81. God.BorderColor3 = Color3.new(0.207843, 0, 0)
  82. God.Position = UDim2.new(0.530937493, 0, 0.260558635, 0)
  83. God.Size = UDim2.new(0, 115, 0, 39)
  84. God.Font = Enum.Font.SciFi
  85. God.Text = "God"
  86. God.TextColor3 = Color3.new(0, 0, 0)
  87. God.TextScaled = true
  88. God.TextSize = 12
  89. God.TextWrapped = true
  90. God.MouseButton1Down:connect(function()
  91. _G.God = true
  92. while true do
  93. wait (300)
  94. game.ReplicatedStorage.Deseo.God:InvokeServer()
  95. end
  96. end)
  97.  
  98. Charge.Name = "Charge"
  99. Charge.Parent = Mother
  100. Charge.BackgroundColor3 = Color3.new(1, 1, 1)
  101. Charge.BackgroundTransparency = 1
  102. Charge.BorderColor3 = Color3.new(0.207843, 0, 0)
  103. Charge.Position = UDim2.new(0.0824180543, 0, 0.590861857, 0)
  104. Charge.Size = UDim2.new(0, 194, 0, 39)
  105. Charge.Font = Enum.Font.SciFi
  106. Charge.Text = "Charge"
  107. Charge.TextColor3 = Color3.new(0, 0, 0)
  108. Charge.TextScaled = true
  109. Charge.TextSize = 12
  110. Charge.TextWrapped = true
  111. Charge.MouseButton1Down:connect(function()
  112. game.Workspace[game.Players.LocalPlayer.Name]["Ki Charge"].lal:FireServer()
  113. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement