Advertisement
poytox

PoytoX's DBOR GUI

Jan 17th, 2017
3,680
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. local ab=Instance.new("ScreenGui")
  2. local bb=Instance.new("TextLabel")local cb=Instance.new("ImageLabel")
  3. local db=Instance.new("Frame")local _c=Instance.new("TextButton")
  4. local ac=Instance.new("TextBox")local bc=Instance.new("TextButton")
  5. local cc=Instance.new("TextButton")local dc=Instance.new("TextButton")
  6. local _d=Instance.new("TextButton")ab.Name="PoytoX'sDBORGUI"ab.Parent=game.CoreGui;bb.Parent=ab
  7. bb.Active=true
  8. bb.BackgroundColor3=Color3.new(0.0823529,0.0823529,0.0823529)bb.BackgroundTransparency=0.5;bb.BorderSizePixel=0;bb.Draggable=true
  9. bb.Position=UDim2.new(0.118858956,0,0.624277472,0)bb.Size=UDim2.new(0,300,0,20)bb.Font=Enum.Font.ArialBold
  10. bb.FontSize=Enum.FontSize.Size18;bb.Text="PoytoX's DBOR GUI"bb.TextColor3=Color3.new(1,1,1)
  11. bb.TextSize=18;cb.Parent=bb;cb.BackgroundTransparency=1
  12. cb.Size=UDim2.new(1,0,0.5,0)cb.ZIndex=2;cb.Image="rbxasset://textures/BWGradient.png"
  13. cb.ImageTransparency=0.5;db.Name="Background"db.Parent=bb
  14. db.BackgroundColor3=Color3.new(0,0,0)db.BackgroundTransparency=0.30000001192093;db.BorderSizePixel=0
  15. db.Position=UDim2.new(0,0,0,20)db.Size=UDim2.new(0,300,0,200)_c.Name="MaxStats"_c.Parent=bb
  16. _c.BackgroundColor3=Color3.new(1,1,1)_c.Position=UDim2.new(0,25,0,60)
  17. _c.Size=UDim2.new(0,250,0,30)_c.Style=Enum.ButtonStyle.RobloxRoundButton
  18. _c.Font=Enum.Font.SourceSans;_c.FontSize=Enum.FontSize.Size14;_c.Text="Max All Stats"
  19. _c.TextSize=14;ac.Name="UserName"ac.Parent=bb
  20. ac.BackgroundColor3=Color3.new(1,1,1)ac.BackgroundTransparency=0.80000001192093
  21. ac.Position=UDim2.new(0,40,0,30)ac.Size=UDim2.new(0,220,0,20)ac.Font=Enum.Font.SourceSans
  22. ac.FontSize=Enum.FontSize.Size14;ac.Text="Username"ac.TextSize=14;bc.Name="UnluckAcc"bc.Parent=bb
  23. bc.BackgroundColor3=Color3.new(1,1,1)bc.Position=UDim2.new(0,25,0,90)
  24. bc.Size=UDim2.new(0,250,0,30)bc.Style=Enum.ButtonStyle.RobloxRoundButton
  25. bc.Font=Enum.Font.SourceSans;bc.FontSize=Enum.FontSize.Size14;bc.Text="Unlock all Accessories"
  26. bc.TextSize=14;cc.Name="UnluckClo"cc.Parent=bb
  27. cc.BackgroundColor3=Color3.new(1,1,1)cc.Position=UDim2.new(0,25,0,120)
  28. cc.Size=UDim2.new(0,250,0,30)cc.Style=Enum.ButtonStyle.RobloxRoundButton
  29. cc.Font=Enum.Font.SourceSans;cc.FontSize=Enum.FontSize.Size14;cc.Text="Unlock All Clothing"
  30. cc.TextSize=14;dc.Name="UnluckMove"dc.Parent=bb
  31. dc.BackgroundColor3=Color3.new(1,1,1)dc.Position=UDim2.new(0,25,0,180)
  32. dc.Size=UDim2.new(0,250,0,30)dc.Style=Enum.ButtonStyle.RobloxRoundButton
  33. dc.Font=Enum.Font.SourceSans;dc.FontSize=Enum.FontSize.Size14;dc.Text="Unlock All Moves"
  34. dc.TextSize=14;_d.Name="UnluckMast"_d.Parent=bb
  35. _d.BackgroundColor3=Color3.new(1,1,1)_d.Position=UDim2.new(0,25,0,150)
  36. _d.Size=UDim2.new(0,250,0,30)_d.Style=Enum.ButtonStyle.RobloxRoundButton
  37. _d.Font=Enum.Font.SourceSans;_d.FontSize=Enum.FontSize.Size11
  38. _d.Text="Unlock All Masters (You skip everything you get from them!)"_d.TextSize=11
  39. _c.MouseButton1Down:connect(function()
  40. Player=game.Players:FindFirstChild(ac.Text)
  41. local ad={Level=true,Exp=true,Speed=true,EnergyControl=true,Power=true,Energy=true,Health=true}
  42. for bd,cd in pairs(Player.Data:children())do if ad[cd.Name]then
  43. Player.Backpack.Events.ChangeStat:InvokeServer(cd,99)end end end)
  44. bc.MouseButton1Down:connect(function()
  45. Player=game.Players:FindFirstChild(ac.Text)for ad,bd in
  46. pairs(Player.Data.UnlockedAccessories:children())do
  47. Player.Backpack.Events.ChangeStat:InvokeServer(bd,"UNLOCKED")end end)
  48. cc.MouseButton1Down:connect(function()
  49. Player=game.Players:FindFirstChild(ac.Text)for ad,bd in
  50. pairs(Player.Data.UnlockedCostumes:children())do
  51. Player.Backpack.Events.ChangeStat:InvokeServer(bd,"UNLOCKED")end end)
  52. dc.MouseButton1Down:connect(function()
  53. Player=game.Players:FindFirstChild(ac.Text)for ad,bd in pairs(Player.Data.MoveList:children())do
  54. Player.Backpack.Events.ChangeStat:InvokeServer(bd,"UNLOCKED")end end)
  55. _d.MouseButton1Down:connect(function()
  56. Player=game.Players:FindFirstChild(ac.Text)for ad,bd in pairs(Player.Data.Masters:children())do
  57. Player.Backpack.Events.ChangeStat:InvokeServer(bd,6)end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement