Be_Gone_Thot

CUSTOM_UI_Paypal

Sep 20th, 2020 (edited)
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 12.40 KB | None | 0 0
  1. local PaypalTools = {};
  2.  
  3. local CoreGui = game:GetService('CoreGui');
  4. local tweenService = game:GetService("TweenService");
  5.  
  6. function createTween(Object,properties,delayTime)
  7.     local EasDir,EasSty = Enum.EasingDirection.InOut,Enum.EasingStyle.Sine;
  8.     local infoTween = TweenInfo.new(tonumber(delayTime),EasSty,EasDir,0,false,0);
  9.  
  10.     local Anim = game:GetService('TweenService'):Create(Object,infoTween,properties);
  11.     Anim:Play();
  12.     return Anim;
  13. end;
  14.  
  15. function dragify(Frame)
  16.     dragToggle = nil
  17.     dragSpeed = .12
  18.     dragInput = nil
  19.     dragStart = nil
  20.     dragPos = nil
  21.    
  22.     function updateInput(input)
  23.         Delta = input.Position - dragStart
  24.         Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  25.         game:GetService("TweenService"):Create(Frame, TweenInfo.new(dragSpeed), {Position = Position}):Play()
  26.     end
  27.    
  28.     Frame.InputBegan:Connect(function(input)
  29.         if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  30.             dragToggle = true
  31.             dragStart = input.Position
  32.             startPos = Frame.Position
  33.             input.Changed:Connect(function()
  34.                 if (input.UserInputState == Enum.UserInputState.End) then
  35.                     dragToggle = false
  36.                 end
  37.             end)
  38.         end
  39.     end)
  40.    
  41.     Frame.InputChanged:Connect(function(input)
  42.         if (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then
  43.             dragInput = input
  44.         end
  45.     end)
  46.    
  47.     game:GetService("UserInputService").InputChanged:Connect(function(input)
  48.         if (input == dragInput and dragToggle) then
  49.             updateInput(input)
  50.         end
  51.     end)
  52. end
  53.  
  54. function PaypalTools.Create(name)
  55.     local toolPaypal = {};
  56.     local CustomUI = Instance.new("ScreenGui")
  57.     local CustomUI_Paypal = Instance.new("Frame")
  58.     local UICornerPaypal = Instance.new("UICorner")
  59.     local Main = Instance.new("Frame")
  60.     local UICornerMain = Instance.new("UICorner")
  61.     local BottomHolder = Instance.new("Frame")
  62.     local ButtonUICornerHolder = Instance.new("UICorner")
  63.     local StoreLabel = Instance.new("TextLabel")
  64.     local UICorner_Store = Instance.new("UICorner")
  65.     local UIPadding_Store = Instance.new("UIPadding")
  66.     local StatusRobbing = Instance.new("TextLabel")
  67.     local UICorner_Robbing = Instance.new("UICorner")
  68.     local UIPadding2Rob = Instance.new("UIPadding")
  69.     local UIListLayout = Instance.new("UIListLayout")
  70.     local Container = Instance.new("ScrollingFrame")
  71.     local UIGridLayout = Instance.new("UIGridLayout")
  72.     local UIPadding3 = Instance.new("UIPadding")
  73.     local Title = Instance.new("TextLabel")
  74.     local UIPadding4 = Instance.new("UIPadding")
  75.     local UIExit = Instance.new("TextButton")
  76.     local UIMinimize = Instance.new("TextButton")
  77.  
  78.     CustomUI.Name = "CustomUI"
  79.     CustomUI.Parent = CoreGui;
  80.     CustomUI.ResetOnSpawn = false
  81.  
  82.     CustomUI_Paypal.Name = "CustomUI_Paypal"
  83.     CustomUI_Paypal.Parent = CustomUI
  84.     CustomUI_Paypal.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  85.     CustomUI_Paypal.BorderSizePixel = 0
  86.     CustomUI_Paypal.Position = UDim2.new(0.00792074669, 0, 0.379947156, 0)
  87.     CustomUI_Paypal.Size = UDim2.new(0, 230, 0, 18)
  88.     CustomUI_Paypal.ZIndex = 2
  89.  
  90.     dragify(CustomUI_Paypal)
  91.  
  92.     UICornerPaypal.CornerRadius = UDim.new(0, 2)
  93.     UICornerPaypal.Parent = CustomUI_Paypal
  94.  
  95.     Main.Name = "Main"
  96.     Main.Parent = CustomUI_Paypal
  97.     Main.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  98.     Main.BorderSizePixel = 0
  99.     Main.ClipsDescendants = true
  100.     Main.Position = UDim2.new(-0.000774914282, 0, 0, 0)
  101.     Main.Size = UDim2.new(0, 230, 0, 102)
  102.  
  103.     UICornerMain.CornerRadius = UDim.new(0, 2)
  104.     UICornerMain.Parent = Main
  105.  
  106.     BottomHolder.Name = "BottomHolder"
  107.     BottomHolder.Parent = Main
  108.     BottomHolder.AnchorPoint = Vector2.new(0.5, 0)
  109.     BottomHolder.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  110.     BottomHolder.BorderSizePixel = 0
  111.     BottomHolder.ClipsDescendants = true
  112.     BottomHolder.Position = UDim2.new(0.5, 0, 0, 85)
  113.     BottomHolder.Size = UDim2.new(0, 224, 0, 14)
  114.  
  115.     ButtonUICornerHolder.CornerRadius = UDim.new(0, 2)
  116.     ButtonUICornerHolder.Parent = BottomHolder
  117.  
  118.     StoreLabel.Name = "StoreLabel"
  119.     StoreLabel.Parent = BottomHolder
  120.     StoreLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  121.     StoreLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  122.     StoreLabel.BackgroundTransparency = 1.000
  123.     StoreLabel.ClipsDescendants = true
  124.     StoreLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  125.     StoreLabel.Size = UDim2.new(0, 112, 1, 0)
  126.     StoreLabel.ZIndex = 2
  127.     StoreLabel.Font = Enum.Font.SourceSans
  128.     StoreLabel.Text = "Store: Disabled"
  129.     StoreLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  130.     StoreLabel.TextSize = 14.000
  131.     StoreLabel.TextXAlignment = Enum.TextXAlignment.Right
  132.  
  133.     UICorner_Store.CornerRadius = UDim.new(0, 2)
  134.     UICorner_Store.Parent = StoreLabel
  135.  
  136.     UIPadding_Store.Parent = StoreLabel
  137.     UIPadding_Store.PaddingBottom = UDim.new(0, 1)
  138.     UIPadding_Store.PaddingRight = UDim.new(0, 2)
  139.  
  140.     StatusRobbing.Name = "StatusRobbing"
  141.     StatusRobbing.Parent = BottomHolder
  142.     StatusRobbing.AnchorPoint = Vector2.new(0.5, 0.5)
  143.     StatusRobbing.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  144.     StatusRobbing.BackgroundTransparency = 1.000
  145.     StatusRobbing.ClipsDescendants = true
  146.     StatusRobbing.Position = UDim2.new(0.5, 0, 0.5, 0)
  147.     StatusRobbing.Size = UDim2.new(0, 112, 1, 0)
  148.     StatusRobbing.ZIndex = 2
  149.     StatusRobbing.Font = Enum.Font.SourceSans
  150.     StatusRobbing.Text = "Robbing: false"
  151.     StatusRobbing.TextColor3 = Color3.fromRGB(255, 255, 255)
  152.     StatusRobbing.TextSize = 14.000
  153.     StatusRobbing.TextXAlignment = Enum.TextXAlignment.Left
  154.  
  155.     function toolPaypal:EditStatus()
  156.         return StatusRobbing;
  157.     end
  158.  
  159.     UICorner_Robbing.CornerRadius = UDim.new(0, 2)
  160.     UICorner_Robbing.Parent = StatusRobbing
  161.  
  162.     UIPadding2Rob.Parent = StatusRobbing
  163.     UIPadding2Rob.PaddingBottom = UDim.new(0, 1)
  164.     UIPadding2Rob.PaddingLeft = UDim.new(0, 2)
  165.  
  166.     UIListLayout.Parent = BottomHolder
  167.     UIListLayout.FillDirection = Enum.FillDirection.Horizontal
  168.     UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  169.  
  170.     Container.Name = "Container"
  171.     Container.Parent = Main
  172.     Container.Active = true
  173.     Container.AnchorPoint = Vector2.new(0.5, 0.5)
  174.     Container.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  175.     Container.BackgroundTransparency = 1.000
  176.     Container.BorderSizePixel = 0
  177.     Container.Position = UDim2.new(0.5, 0, 0.519489944, 0)
  178.     Container.Size = UDim2.new(0, 228, 0, 60)
  179.     Container.CanvasSize = UDim2.new(0, 0, 0, 76)
  180.     Container.ScrollBarThickness = 0
  181.     Container.ClipsDescendants = true;
  182.  
  183.     UIGridLayout.Parent = Container
  184.     UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  185.     UIGridLayout.CellPadding = UDim2.new(0, 2, 0, 2)
  186.     UIGridLayout.CellSize = UDim2.new(0, 112, 0, 18)
  187.     UIGridLayout.FillDirectionMaxCells = 2
  188.  
  189.     UIPadding3.Parent = Container
  190.     UIPadding3.PaddingBottom = UDim.new(0, 1)
  191.     UIPadding3.PaddingLeft = UDim.new(0, 1)
  192.     UIPadding3.PaddingRight = UDim.new(0, 1)
  193.     UIPadding3.PaddingTop = UDim.new(0, 1)
  194.  
  195.     Title.Name = "Title"
  196.     Title.Parent = CustomUI_Paypal
  197.     Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  198.     Title.BackgroundTransparency = 1.000
  199.     Title.BorderSizePixel = 0
  200.     Title.Size = UDim2.new(-0.478648245, 200, 1, 0)
  201.     Title.ZIndex = 2
  202.     Title.Font = Enum.Font.SourceSans
  203.     Title.Text = name
  204.     Title.TextColor3 = Color3.fromRGB(252, 252, 252)
  205.     Title.TextSize = 16.000
  206.     Title.TextXAlignment = Enum.TextXAlignment.Left
  207.  
  208.     UIPadding4.Parent = Title
  209.     UIPadding4.PaddingLeft = UDim.new(0, 4)
  210.  
  211.     UIExit.Name = "UIExit"
  212.     UIExit.Parent = CustomUI_Paypal
  213.     UIExit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  214.     UIExit.BackgroundTransparency = 1.000
  215.     UIExit.BorderSizePixel = 0
  216.     UIExit.Position = UDim2.new(0.917391479, 0, -0.0102606881, 0)
  217.     UIExit.Size = UDim2.new(0, 18, 0, 18)
  218.     UIExit.ZIndex = 2
  219.     UIExit.AutoButtonColor = false
  220.     UIExit.Font = Enum.Font.SourceSans
  221.     UIExit.Text = "X"
  222.     UIExit.TextColor3 = Color3.fromRGB(252, 252, 252)
  223.     UIExit.TextSize = 14.000
  224.     UIExit.MouseButton1Click:Connect(function()
  225.         CustomUI:Destroy()
  226.     end)
  227.  
  228.     UIMinimize.Name = "UIMinimize"
  229.     UIMinimize.Parent = CustomUI_Paypal
  230.     UIMinimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  231.     UIMinimize.BackgroundTransparency = 1.000
  232.     UIMinimize.BorderSizePixel = 0
  233.     UIMinimize.Position = UDim2.new(0.83913064, 0, -0.0102606881, 0)
  234.     UIMinimize.Size = UDim2.new(0, 18, 0, 18)
  235.     UIMinimize.ZIndex = 2
  236.     UIMinimize.AutoButtonColor = false
  237.     UIMinimize.Font = Enum.Font.SourceSans
  238.     UIMinimize.Text = "-"
  239.     UIMinimize.TextColor3 = Color3.fromRGB(252, 252, 252)
  240.     UIMinimize.TextSize = 14.000
  241.    
  242.     local ToggleA = false;
  243.     UIMinimize.MouseButton1Click:Connect(function()
  244.         ToggleA = not ToggleA
  245.         local SizeY = ToggleA and UDim2.new(0,230,0,18) or UDim2.new(0, 230,0, 102);
  246.         UIMinimize.Text = ToggleA and "+" or "-";
  247.    
  248.         createTween(Main,{Size = SizeY},.12)
  249.     end)
  250.    
  251.     function toolPaypal:AddToggle(name,callback)
  252.         local Toggle = Instance.new("Frame")
  253.         local UICornerMainToggle = Instance.new("UICorner")
  254.         local Title = Instance.new("TextLabel")
  255.         local UIPaddingToggle = Instance.new("UIPadding")
  256.         local CircleToggle = Instance.new("TextButton")
  257.         local UICornerToggle = Instance.new("UICorner")
  258.  
  259.         Toggle.Name = name
  260.         Toggle.Parent = Container
  261.         Toggle.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  262.         Toggle.BorderSizePixel = 0
  263.         Toggle.Size = UDim2.new(0, 100, 0, 100)
  264.  
  265.         UICornerMainToggle.CornerRadius = UDim.new(0, 2)
  266.         UICornerMainToggle.Parent = Toggle
  267.  
  268.         Title.Name = "Title"
  269.         Title.Parent = Toggle
  270.         Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  271.         Title.BackgroundTransparency = 1.000
  272.         Title.BorderSizePixel = 0
  273.         Title.Size = UDim2.new(0.839999974, 0, 1, 0)
  274.         Title.ZIndex = 1
  275.         Title.Font = Enum.Font.SourceSans
  276.         Title.Text = name
  277.         Title.TextColor3 = Color3.fromRGB(224, 224, 224)
  278.         Title.TextSize = 14.000
  279.         Title.TextXAlignment = Enum.TextXAlignment.Left
  280.  
  281.         UIPaddingToggle.Parent = Title
  282.         UIPaddingToggle.PaddingLeft = UDim.new(0, 4)
  283.  
  284.         CircleToggle.Name = "CircleToggle"
  285.         CircleToggle.Parent = Toggle
  286.         CircleToggle.AnchorPoint = Vector2.new(0.5, 0.5)
  287.         CircleToggle.BackgroundColor3 = Color3.fromRGB(255, 58, 58)
  288.         CircleToggle.BorderSizePixel = 0
  289.         CircleToggle.Position = UDim2.new(0.920000017, 0, 0.5, 0)
  290.         CircleToggle.Size = UDim2.new(0, 14, 0, 14)
  291.         CircleToggle.ZIndex = 1
  292.         CircleToggle.AutoButtonColor = false
  293.         CircleToggle.Font = Enum.Font.SourceSans
  294.         CircleToggle.Text = ""
  295.         CircleToggle.TextColor3 = Color3.fromRGB(0, 0, 0)
  296.         CircleToggle.TextSize = 14.000
  297.  
  298.         UICornerToggle.CornerRadius = UDim.new(0, 2)
  299.         UICornerToggle.Parent = CircleToggle
  300.  
  301.         local Toggle = false;
  302.         CircleToggle.MouseButton1Click:Connect(function()
  303.             Toggle = not Toggle;
  304.             local CircleColor = Toggle and Color3.fromRGB(69, 207, 18) or Color3.fromRGB(255, 58, 58);
  305.             callback(Toggle)
  306.             createTween(CircleToggle,{BackgroundColor3 = CircleColor},.08)
  307.         end)
  308.  
  309.         return {
  310.             Set = function(self,bool)
  311.                 Toggle = bool;
  312.                 local CircleColor = Toggle and Color3.fromRGB(69, 207, 18) or Color3.fromRGB(255, 58, 58);
  313.                 callback(Toggle);
  314.                 createTween(CircleToggle,{BackgroundColor3 = CircleColor},.08)
  315.             end
  316.         }
  317.     end
  318.     return toolPaypal;
  319. end
  320.  
  321. local UI = PaypalTools.Create("Paypal-Tools");
  322. getgenv().textstat = EditStatus();
  323.  
  324. UI:AddToggle("AutoRob",function(bool)
  325.     getgenv().AutoRob = bool;
  326. end)
  327.  
  328. UI:AddToggle("Kill Aura",function(bool)
  329.     getgenv().killaura = bool;
  330. end)
  331.  
  332. UI:AddToggle("Auto Breakout",function(bool)
  333.     getgenv().BreakOut = bool;
  334. end)
  335.  
  336. getgenv().customui = true
  337. loadstring(game:HttpGet("https://raw.githubusercontent.com/RGBBOIFORH/beta/master/boi"))()
Add Comment
Please, Sign In to add comment