Advertisement
BINCOOD

Jump

Jan 2nd, 2023
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. local FightingGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local UICorner = Instance.new("UICorner")
  4. local UICorner2 = Instance.new("UICorner")
  5. local UICorner3 = Instance.new("UICorner")
  6. local UICorner4 = Instance.new("UICorner")
  7. local UICorner5 = Instance.new("UICorner")
  8. local UICorner6 = Instance.new("UICorner")
  9. local UICorner7 = Instance.new("UICorner")
  10. local Y = Instance.new("TextButton")
  11. local wsinput = Instance.new("TextBox")
  12. local setws = Instance.new("TextButton")
  13. local rews = Instance.new("TextButton")
  14. local Open = Instance.new("TextButton")
  15. local Close = Instance.new("TextButton")
  16. local S = Instance.new("ScreenGui")
  17. local U = Instance.new("ScreenGui")
  18.  
  19.  
  20.  
  21. FightingGui.Name = "FightingGui"
  22. FightingGui.Parent = game.CoreGui
  23. FightingGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  24.  
  25. S.Name = "S"
  26. S.Parent = game.CoreGui
  27. S.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  28.  
  29. U.Name = "U"
  30. U.Parent = game.CoreGui
  31. U.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  32.  
  33. main.Parent = FightingGui
  34. main.AnchorPoint = Vector2.new(1, 0)
  35. main.Active = true
  36. main.BackgroundColor3 = Color3.fromRGB(194, 194, 194)
  37. main.Position = UDim2.new(0.6, 0, 0.1, 0)
  38. main.Size = UDim2.new(0, 150, 0, 150)
  39. main.Draggable = true
  40. main.Visible = false
  41.  
  42. UICorner.Parent = main
  43. UICorner2.Parent = Y
  44. UICorner3.Parent = wsinput
  45. UICorner4.Parent = setws
  46. UICorner5.Parent = rews
  47. UICorner6.Parent = Open
  48. UICorner7.Parent = Close
  49.  
  50. Y.Name = "Y"
  51. Y.Parent = main
  52. Y.AnchorPoint = Vector2.new(0.9, 0)
  53. Y.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  54. Y.Position = UDim2.new(0.90 , 0, 0.78, 0)
  55. Y.Size = UDim2.new(0, 149, 0, 32)
  56. Y.Font = Enum.Font.SourceSans
  57. Y.Text = "Remove"
  58. Y.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. Y.TextScaled = true
  60. Y.TextSize = 14.000
  61. Y.TextWrapped = true
  62. Y.MouseButton1Click:Connect(function()
  63. main:Destroy()
  64. U:Destroy()
  65. S:Destroy()
  66. end)
  67.  
  68. Open.Name = "Open"
  69. Open.Parent = S
  70. Open.AnchorPoint = Vector2.new(10, 0)
  71. Open.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  72. Open.Position = UDim2.new(0.98, 0, 0.4, 0)
  73. Open.Size = UDim2.new(0, 35, 0, 30)
  74. Open.Font = Enum.Font.SourceSans
  75. Open.Text = ""
  76. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  77. Open.TextScaled = true
  78. Open.TextSize = 14.000
  79. Open.TextWrapped = true
  80. Open.MouseButton1Down:Connect(function()
  81. main.Visible = true
  82. U.Enabled = true
  83. S.Enabled = false
  84. Close.Visible = true
  85. end)
  86.  
  87. Close.Name = "Close"
  88. Close.Parent = U
  89. Close.AnchorPoint = Vector2.new(10, 0)
  90. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  91. Close.Position = UDim2.new(0.98, 0, 0.4, 0)
  92. Close.Size = UDim2.new(0, 35, 0, 30)
  93. Close.Font = Enum.Font.SourceSans
  94. Close.Text = ""
  95. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  96. Close.TextScaled = true
  97. Close.TextSize = 14.000
  98. Close.TextWrapped = true
  99. Close.Visible = false
  100. Close.MouseButton1Down:Connect(function()
  101. main.Visible = false
  102. S.Enabled = true
  103. U.Enabled = false
  104. end)
  105.  
  106. wsinput.Name = "wsinput"
  107. wsinput.Parent = main
  108. wsinput.AnchorPoint = Vector2.new(0.9, 0)
  109. wsinput.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  110. wsinput.Position = UDim2.new(0.897, 0, 0.004, 0)
  111. wsinput.Size = UDim2.new(0, 148, 0, 30)
  112. wsinput.Font = Enum.Font.SourceSans
  113. wsinput.Text = "Jump Value"
  114. wsinput.TextColor3 = Color3.fromRGB(255, 255, 255)
  115. wsinput.TextSize = 22.000
  116.  
  117. setws.Name = "setws"
  118. setws.Parent = main
  119. setws.AnchorPoint = Vector2.new(0.9, 0)
  120. setws.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  121. setws.Position = UDim2.new(0.4, 0, 0.21, 0)
  122. setws.Size = UDim2.new(0, 56, 0, 30)
  123. setws.Font = Enum.Font.SourceSans
  124. setws.Text = "Set Jump"
  125. setws.TextColor3 = Color3.fromRGB(85, 0, 127)
  126. setws.TextSize = 14.000
  127. setws.MouseButton1Click:Connect(function()
  128. game.Players.LocalPlayer.Character.Humanoid.JumpPower = wsinput.Text
  129. end)
  130.  
  131. rews.Name = "rews"
  132. rews.Parent = main
  133. rews.AnchorPoint = Vector2.new(0.9, 0)
  134. rews.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  135. rews.Position = UDim2.new(0.9, 0, 0.21, 0)
  136. rews.Size = UDim2.new(0, 56, 0, 30)
  137. rews.Font = Enum.Font.SourceSans
  138. rews.Text = "Reset Jump"
  139. rews.TextColor3 = Color3.fromRGB(85, 0, 127)
  140. rews.TextSize = 14.000
  141. rews.MouseButton1Click:Connect(function()
  142. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  143. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement