Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- OrionLib:MakeNotification({
- Name = "Credit to Ali_ On Scriptblox",
- Content = "I just made it look better",
- Image = "rbxassetid://10887948076",
- Time = 2
- })
- OrionLib:MakeNotification({
- Name = "If it doesnt work",
- Content = "Execute again when atleast 1 item spawned in the jar",
- Image = "rbxassetid://10887948076",
- Time = 5
- })
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local InsertedObjects = Instance.new("ScreenGui")
- local Gradient = Instance.new("Frame")
- local UIGradient = Instance.new("UIGradient")
- local UICorner = Instance.new("UICorner")
- local Frame = Instance.new("Frame")
- local UICorner_2 = Instance.new("UICorner")
- local Shadow = Instance.new("Frame")
- local UICorner_3 = Instance.new("UICorner")
- local TextLabel = Instance.new("TextLabel")
- local Pattern = Instance.new("ImageLabel")
- --Properties:
- InsertedObjects.Name = "InsertedObjects"
- InsertedObjects.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Gradient.Name = "Gradient"
- Gradient.Parent = InsertedObjects
- Gradient.AnchorPoint = Vector2.new(0.5, 0.5)
- Gradient.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Gradient.BorderColor3 = Color3.fromRGB(27, 42, 53)
- Gradient.BorderSizePixel = 0
- Gradient.Position = UDim2.new(0.5, 0, 0.5, 0)
- Gradient.Size = UDim2.new(0, 200, 0, 122)
- UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(102, 45, 113)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(197, 66, 110))}
- UIGradient.Parent = Gradient
- UICorner.CornerRadius = UDim.new(0, 4)
- UICorner.Parent = Gradient
- Frame.Parent = Gradient
- Frame.BackgroundColor3 = Color3.fromRGB(122, 17, 73)
- Frame.Position = UDim2.new(0.0950079858, 0, 0.291059583, 0)
- Frame.Size = UDim2.new(0, 160, 0, 49)
- Frame.ZIndex = 9999
- UICorner_2.CornerRadius = UDim.new(1, 0)
- UICorner_2.Parent = Frame
- Shadow.Name = "Shadow"
- Shadow.Parent = Frame
- Shadow.BackgroundColor3 = Color3.fromRGB(103, 17, 54)
- Shadow.BorderSizePixel = 0
- Shadow.Size = UDim2.new(1, 0, 1, 4)
- UICorner_3.CornerRadius = UDim.new(1, 0)
- UICorner_3.Parent = Shadow
- TextLabel.Parent = Frame
- TextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.BorderColor3 = Color3.fromRGB(27, 42, 53)
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
- TextLabel.Size = UDim2.new(1, -20, 1, -20)
- TextLabel.ZIndex = 999999999
- TextLabel.Font = Enum.Font.GothamMedium
- TextLabel.Text = "Items"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- Pattern.Name = "Pattern"
- Pattern.Parent = Gradient
- Pattern.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Pattern.BackgroundTransparency = 1.000
- Pattern.Position = UDim2.new(0, 0, 0.00819671154, 0)
- Pattern.Size = UDim2.new(0, 200, 0, 122)
- Pattern.ZIndex = 9
- Pattern.Image = "rbxassetid://2151741365"
- Pattern.ImageTransparency = 0.600
- Pattern.ScaleType = Enum.ScaleType.Tile
- Pattern.SliceCenter = Rect.new(0, 256, 0, 256)
- Pattern.TileSize = UDim2.new(0, 250, 0, 250)
- -- Scripts:
- local function DAEMK_fake_script() -- Gradient.DragScript
- local script = Instance.new('LocalScript', Gradient)
- --Not made by me, check out this video: https://www.youtube.com/watch?v=z25nyNBG7Js&t=22s
- --Put this inside of your Frame and configure the speed if you would like.
- --Enjoy! Credits go to: https://www.youtube.com/watch?v=z25nyNBG7Js&t=22s
- local UIS = game:GetService('UserInputService')
- local frame = script.Parent
- local dragToggle = nil
- local dragSpeed = 0.25
- local dragStart = nil
- local startPos = nil
- local function updateInput(input)
- local delta = input.Position - dragStart
- local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
- startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
- end
- frame.InputBegan:Connect(function(input)
- if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
- dragToggle = true
- dragStart = input.Position
- startPos = frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragToggle = false
- end
- end)
- end
- end)
- UIS.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- if dragToggle then
- updateInput(input)
- end
- end
- end)
- end
- coroutine.wrap(DAEMK_fake_script)()
- local function YOQKLIC_fake_script() -- Frame.Script
- local script = Instance.new('Script', Frame)
- while true do
- wait(0.01)
- counted = 0
- for i,v in pairs(game.Workspace.Items:GetChildren()) do
- print(v)
- counted = i
- counted -= 15
- items = tostring(counted)
- end
- script.Parent.TextLabel.Text = items
- end
- end
- coroutine.wrap(YOQKLIC_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement