Advertisement
GlockVybez

Untitled

Jan 25th, 2020
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2. local Stats = library:CreateWindow({
  3. text = "Stats"
  4. })
  5.  
  6. function addStat(stat,stat2,stat3)
  7. Stats:AddLabel(stat,stat2,stat3);
  8.  
  9. Stats:AddBox(stat2, function(object, focus)
  10. for i,v in pairs(getgc(true)) do
  11. if type(v) == "table" and rawget(v, "handles") then
  12. v[stat3] = tonumber(object.Text) or game:GetService("Players").GlockVybez.attributes[stat3].Value
  13. end
  14. end
  15. end)
  16. end
  17.  
  18. local mascots = library:CreateWindow({
  19. text = "Mascots"
  20. })
  21.  
  22. local credits = library:CreateWindow({text='Credits'})
  23. credits:AddLabel("Credits\nVixary")
  24.  
  25. addStat("3 Pointer:","","3pointer")
  26. addStat("2 Pointer:","","2pointer")
  27. addStat("Moving Shot:","","movingshot")
  28. addStat("Freethrow:","","freethrow")
  29. addStat("Layup:","","layup")
  30. addStat("Dunk:","","dunk")
  31. addStat("Speed:","","speed")
  32. addStat("Ball Speed:","","ballspeed")
  33. addStat("Post Scorer:","","postscorer")
  34. addStat("Handles:","","handles")
  35. addStat("Strength:","","3pointer")
  36. addStat("Jump:","","jump")
  37. addStat("Passing:","","passing")
  38. addStat("Shot Contest:","","shotcontest")
  39. addStat("Steal:","","steal")
  40. addStat("Defense:","","defense")
  41.  
  42.  
  43.  
  44.  
  45.  
  46. mascots:AddButton("Sonic", function()
  47. game.Players.LocalPlayer.Character.Shirt.ShirtTemplate = "rbxassetid://166997534"
  48. game.Players.LocalPlayer.Character.Pants.PantsTemplate = "rbxassetid://37046037"
  49. game.Players.LocalPlayer.Character.Hat.Mesh.MeshId = "rbxassetid://430064078"
  50. game.Players.LocalPlayer.Character.Hat.Mesh.TextureId = "rbxassetid://430064079"
  51. game.Players.LocalPlayer.Character.ShoeL.TextureID = "rbxassetid://1135791438"
  52. game.Players.LocalPlayer.Character.ShoeR.TextureID = "rbxassetid://1135791544"
  53. end)
  54.  
  55.  
  56. local Stats1 = game:GetService("CoreGui").UILibrary:WaitForChild("Stats")
  57. local credits1 = game:GetService("CoreGui").UILibrary:WaitForChild("Credits")
  58. local mascots1 = game:GetService("CoreGui").UILibrary:WaitForChild("Mascots")
  59.  
  60.  
  61.  
  62. local UIS = game:GetService("UserInputService")
  63.  
  64. UIS.InputBegan:Connect(function(input)
  65. if input.KeyCode == Enum.KeyCode.RightShift then
  66. Stats1.Visible = not Stats1.Visible
  67. mascots1.Visible = not mascots1.Visible
  68. credits1.Visible = not credits1.Visible
  69. end
  70. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement