Advertisement
Guest User

Cachorro's Gui PART 1

a guest
Apr 5th, 2020
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.72 KB | None | 0 0
  1. -- CACHORRO'S GUI V2.0 SCRIPT (part 1)
  2.  
  3. wait(1)
  4. if game.Players.LocalPlayer.PlayerGui.Cachorro then
  5.     game.Players.LocalPlayer.PlayerGui.Cachorro:Destroy()
  6. end
  7. local A = Instance.new("ScreenGui")
  8. local B = Instance.new("TextLabel")
  9. local C = Instance.new("Frame")
  10. local D = Instance.new("TextButton")
  11. local E = false
  12. local E2 = false
  13. local F = Instance.new("TextBox")
  14. A.Parent = game.Players.LocalPlayer.PlayerGui
  15. A.Name = "Cachorro"
  16. C.Parent = A
  17. C.Size = UDim2.new(0.2, 0, 0.2, 0)
  18. C.Position = UDim2.new(0, 0, 0.8, 0)
  19. C.BackgroundColor3 = Color3.new(255,255,255)
  20. C.BorderColor3 = Color3.new(0,0.5,1)
  21. C.BorderSizePixel = 5
  22. B.Parent = C
  23. B.BorderColor3 = Color3.new(0,0.5,1)
  24. B.BorderSizePixel = 5
  25. B.BackgroundColor3 = Color3.new(255,255,255)
  26. B.Position = UDim2.new(0, 0, 0, 0)
  27. B.Size = UDim2.new(1, 0, 0.25, 0)
  28. B.Text = "CACHORRO'S GUI V2.0"
  29. B.Font = Enum.Font.Arcade
  30. B.TextScaled = true
  31. local B2 = B:Clone()
  32. B2.Parent = C
  33. B2.Text = "EXP: 1337 / 1337"
  34. B2.BackgroundTransparency = 1
  35. B2.Position = UDim2.new(0, 0, 0.25, 0)
  36. D.Parent = C
  37. D.BorderColor3 = Color3.new(0,0.5,1)
  38. D.BorderSizePixel = 5
  39. D.BackgroundColor3 = Color3.new(255,255,255)
  40. D.Position = UDim2.new(0, 0, 0.5, 0)
  41. D.Size = UDim2.new(1, 0, 0.25, 0)
  42. D.Text = "WalkSpeed"
  43. D.Font = Enum.Font.Arcade
  44. D.TextScaled = true
  45. local D2 = D:Clone()
  46. D2.Parent = C
  47. D2.BackgroundTransparency = 1
  48. D2.Position = UDim2.new(0, 0, 0.75, 0)
  49. D2.Text = "JumpPower"
  50. F.Parent = C
  51. F.BackgroundColor3 = Color3.new(255,255,255)
  52. F.BorderColor3 = Color3.new(0,0.5,1)
  53. F.BorderSizePixel = 5
  54. F.Position = UDim2.new(0, 0, -0.25, 0)
  55. F.Size = UDim2.new(0.5, 0, 0.25, 0)
  56. F.Text = "100"
  57. F.Font = Enum.Font.Arcade
  58. F.TextScaled = true
  59. F.Visible = false
  60. local F2 = F:Clone()
  61. F2.Parent = C
  62. F2.Position = UDim2.new(0.5, 0, -0.25, 0)
  63. D.MouseButton1Click:connect(function()
  64.     if E == false then
  65.         F.Visible = true
  66.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = F.Text
  67.         E = true
  68.     elseif E == true then
  69.         F.Visible = false
  70.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  71.         E = false
  72.     end
  73.     while E == true do
  74.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = F.Text
  75.         wait()
  76.     end
  77. end)
  78. D2.MouseButton1Click:connect(function()
  79.     if E2 == false then
  80.         F2.Visible = true
  81.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = F2.Text
  82.         E2 = true
  83.     elseif E2 == true then
  84.         F2.Visible = false
  85.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  86.         E2 = false
  87.     end
  88.     while E2 == true do
  89.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = F2.Text
  90.         wait()
  91.     end
  92. end)
  93. while wait() do
  94.     local C = game.Players.LocalPlayer.Data.RankExp.Value
  95.     local D = game.Players.LocalPlayer.Data.RankExpNeeded.Value
  96.     B2.Text = "EXP: " .. C .. " / " .. D
  97. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement