Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Maingui = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local Teleports = Instance.new("TextButton")
- local Teleport = Instance.new("Frame")
- local OrbsTeleports = Instance.new("TextButton")
- local ChestsTeleports = Instance.new("TextButton")
- local EggsTeleports = Instance.new("TextButton")
- local Script1 = Instance.new("TextLabel")
- local Script2 = Instance.new("TextLabel")
- local GiveStats = Instance.new("TextButton")
- local Owner = Instance.new("TextLabel")
- local Closegui = Instance.new("Frame")
- local Close = Instance.new("TextButton")
- local OpenOther = Instance.new("TextButton")
- local Opengui = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- Maingui.Name = "Maingui"
- Maingui.Parent = ScreenGui
- Maingui.BackgroundColor3 = Color3.new(1, 1, 1)
- Maingui.Position = UDim2.new(0.161684796, 0, 0.199203193, 0)
- Maingui.Size = UDim2.new(0, 389, 0, 324)
- Maingui.Visible = false
- Maingui.Style = Enum.FrameStyle.DropShadow
- Maingui.Active = true
- Maingui.Draggable = true
- Title.Name = "Title"
- Title.Parent = Maingui
- Title.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Title.Position = UDim2.new(0.00257069431, 0, -0.00617283955, 0)
- Title.Size = UDim2.new(0, 350, 0, 27)
- Title.Font = Enum.Font.SourceSans
- Title.Text = "Dragon Keeper Gui"
- Title.TextColor3 = Color3.new(1, 0, 0)
- Title.TextSize = 14
- Teleports.Name = "Teleports"
- Teleports.Parent = Maingui
- Teleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Teleports.Position = UDim2.new(0.246786624, 0, 0.141975313, 0)
- Teleports.Size = UDim2.new(0, 171, 0, 52)
- Teleports.Font = Enum.Font.SourceSans
- Teleports.Text = "Teleports"
- Teleports.TextColor3 = Color3.new(1, 0, 0)
- Teleports.TextSize = 14
- Teleports.MouseButton1Down:connect(function()
- Teleport.Visible = true
- end)
- Teleport.Name = "Teleport"
- Teleport.Parent = Teleports
- Teleport.BackgroundColor3 = Color3.new(1, 1, 1)
- Teleport.Position = UDim2.new(1.67251456, 0, -1.01923084, 0)
- Teleport.Size = UDim2.new(0, 262, 0, 314)
- Teleport.Visible = false
- Teleport.Style = Enum.FrameStyle.DropShadow
- Teleport.Active = true
- Teleport.Draggable = true
- OrbsTeleports.Name = "Orbs Teleports"
- OrbsTeleports.Parent = Teleport
- OrbsTeleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- OrbsTeleports.Position = UDim2.new(0.148144692, 0, 0.078182742, 0)
- OrbsTeleports.Size = UDim2.new(0, 171, 0, 52)
- OrbsTeleports.Font = Enum.Font.SourceSans
- OrbsTeleports.Text = "Orbs Teleport"
- OrbsTeleports.TextColor3 = Color3.new(1, 0, 0)
- OrbsTeleports.TextSize = 14
- OrbsTeleports.MouseButton1Down:connect(function()
- for i, v in pairs(workspace.Orbs:GetChildren())do
- if(v.PrimaryPart)then
- v.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end)
- ChestsTeleports.Name = "Chests Teleports"
- ChestsTeleports.Parent = Teleport
- ChestsTeleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- ChestsTeleports.Position = UDim2.new(0.151961491, 0, 0.377545804, 0)
- ChestsTeleports.Size = UDim2.new(0, 171, 0, 52)
- ChestsTeleports.Font = Enum.Font.SourceSans
- ChestsTeleports.Text = "Chests Teleport"
- ChestsTeleports.TextColor3 = Color3.new(1, 0, 0)
- ChestsTeleports.TextSize = 14
- ChestsTeleports.MouseButton1Down:connect(function()
- for i, v in pairs(workspace.Gathering.Gold['Spawn-V2']:GetChildren())do
- if(v:FindFirstChild('Small'))then
- print 'Found a small chest'
- v.Small.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- elseif(v:FindFirstChild('Medium'))then
- print 'Found a medium chest'
- v.Medium.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- elseif(v:FindFirstChild('Large'))then
- print 'Found a Large chest'
- v.Large.PrimaryPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- wait(1)
- end
- end)
- EggsTeleports.Name = "Eggs Teleports"
- EggsTeleports.Parent = Teleport
- EggsTeleports.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- EggsTeleports.Position = UDim2.new(0.148144692, 0, 0.667354763, 0)
- EggsTeleports.Size = UDim2.new(0, 171, 0, 52)
- EggsTeleports.Font = Enum.Font.SourceSans
- EggsTeleports.Text = "Eggs Teleport"
- EggsTeleports.TextColor3 = Color3.new(1, 0, 0)
- EggsTeleports.TextSize = 14
- EggsTeleports.MouseButton1Down:connect(function()
- for i, v in pairs(workspace.EggSpawnZones['Spawn-V2']:GetChildren())do
- if(v:FindFirstChild('DragonEgg'))then
- print 'Found an egg!'
- v.DragonEgg.DragonEgg.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end)
- Script1.Name = "Script1"
- Script1.Parent = Teleport
- Script1.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Script1.Position = UDim2.new(-0.0152671747, 0, -0.022292994, 0)
- Script1.Size = UDim2.new(0, 253, 0, 27)
- Script1.Font = Enum.Font.SourceSans
- Script1.Text = "Scripts Belong to V3rmillion"
- Script1.TextColor3 = Color3.new(1, 0, 0)
- Script1.TextSize = 14
- Script2.Name = "Script2"
- Script2.Parent = Teleport
- Script2.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Script2.Position = UDim2.new(-0.0152671756, 0, 0.926751614, 0)
- Script2.Size = UDim2.new(0, 253, 0, 27)
- Script2.Font = Enum.Font.SourceSans
- Script2.Text = "Scripts Belong to V3rmillion"
- Script2.TextColor3 = Color3.new(1, 0, 0)
- Script2.TextSize = 14
- GiveStats.Name = "Give Stats"
- GiveStats.Parent = Maingui
- GiveStats.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- GiveStats.Position = UDim2.new(0.244215935, 0, 0.367283911, 0)
- GiveStats.Size = UDim2.new(0, 171, 0, 50)
- GiveStats.Font = Enum.Font.SourceSans
- GiveStats.Text = "Give Stats"
- GiveStats.TextColor3 = Color3.new(1, 0, 0)
- GiveStats.TextSize = 14
- GiveStats.MouseButton1Down:connect(function()
- local Dragon = workspace.SpawnedDragons:FindFirstChild(tostring(game.Players.LocalPlayer.UserId))
- if(Dragon)then
- for Index, DragonObject in pairs(Dragon:GetChildren())do
- DragonObject.Values.Stats.Multipliers.Speed.Value = 3
- end
- end
- end)
- Owner.Name = "Owner"
- Owner.Parent = Maingui
- Owner.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Owner.Position = UDim2.new(-0.00771208247, 0, 0.907407403, 0)
- Owner.Size = UDim2.new(0, 379, 0, 27)
- Owner.Font = Enum.Font.SourceSans
- Owner.Text = "Make By ClarkShadow"
- Owner.TextColor3 = Color3.new(1, 0, 0)
- Owner.TextSize = 14
- Closegui.Name = "Closegui"
- Closegui.Parent = Maingui
- Closegui.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Closegui.Position = UDim2.new(0.940873981, 0, -0.0246913582, 0)
- Closegui.Size = UDim2.new(0, 30, 0, 33)
- Closegui.Style = Enum.FrameStyle.DropShadow
- Closegui.Active = true
- Closegui.Draggable = false
- Close.Name = "Close"
- Close.Parent = Closegui
- Close.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Close.Position = UDim2.new(-0.0333333015, 0, -0.0673401356, 0)
- Close.Size = UDim2.new(0, 14, 0, 22)
- Close.Font = Enum.Font.SourceSans
- Close.Text = "X"
- Close.TextColor3 = Color3.new(1, 0, 0)
- Close.TextSize = 14
- Close.MouseButton1Down:connect(function()
- Maingui.Visible = false
- Teleport.Visible = false
- Opengui.Visible = true
- end)
- OpenOther.Name = "OpenOther"
- OpenOther.Parent = Maingui
- OpenOther.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- OpenOther.Position = UDim2.new(0.241645247, 0, 0.589506149, 0)
- OpenOther.Size = UDim2.new(0, 171, 0, 50)
- OpenOther.Font = Enum.Font.SourceSans
- OpenOther.Text = "Open Other Gui"
- OpenOther.TextColor3 = Color3.new(1, 0, 0)
- OpenOther.TextSize = 14
- OpenOther.MouseButton1Down:connect(function()
- -- Explorer:
- TextProperties = {"ClassName", "Name", "Value", "Text", "Reflectance", "Transparency", "Heat", "TeamName", "WalkSpeed", "Health", "MaxHealth", "Size", "Position", "AccountAge", "RobloxLocked", "TeamColor", "userId", "Brightness", "Ambient", "TimeOfDay", "FieldOfView", "CameraType", "LinkedSource"}
- BoolProperties = {"Anchored", "CanCollide", "Disabled", "Jump", "Sit", "Visible", "Enabled", "Locked", "FilteringEnabled", "StreamingEnabled", "GlobalShadows"}
- BrickColorProperties = {"BrickColor", "Color", "TeamColor", "Texture", "Value"}
- s = Instance.new("ScreenGui", game.CoreGui)
- pgr = Instance.new("TextButton")
- pgr.Parent = s
- pgr.Size = UDim2.new(0,100,0,40)
- pgr.Position = UDim2.new(0,30,0,440)
- pgr.Text="Explorer"
- pgr.BackgroundTransparency = 0.3
- pgr.TextColor = BrickColor.new("White")
- pgr.BackgroundColor = BrickColor.new("Really Black")
- pgr.BorderColor = BrickColor.new("Black")
- pgr.Font = "ArialBold"
- pgr.FontSize = "Size14"
- pgr.TextStrokeColor3 = Color3.new(0/0,0/0,0/0)
- pgr.TextStrokeTransparency = 0.3
- pgr.BorderSizePixel = 1
- pgr.BorderColor = BrickColor.new("White")
- if game.CoreGui:findFirstChild("Explorer") then
- game.CoreGui:findFirstChild("Explorer"):Remove()
- end
- local Cloned
- local Deleted
- local DeleteParent
- local Player
- local Search
- local ScriptSearch
- local Gui
- local Cloned = nil
- local Deleted = nil
- local DeleteParent = nil
- local Current = 0
- local CurrentOption = 0
- function Clear()
- if Gui then
- Gui:Remove()
- end
- Current = 0
- CurrentOption = 0
- end
- function AddButton(N, Function, Color, Copy)
- if not N then
- error("RenderButton - No Name Specified")
- end
- if not Function then
- error("RenderButton - No Function Specified")
- end
- if not Color then
- Color = Color3.new(1, 1, 1)
- end
- if Copy == nil then
- Copy = true
- end
- P = Instance.new("TextButton")
- if Copy then
- P.Size = UDim2.new(0, 110, 0, 20)
- else
- P.Size = UDim2.new(0, 130, 0, 20)
- end
- P.Text = N.Name
- P.Name = N.Name
- P.Parent = Gui
- P.BackgroundColor3 = Color
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300, 0, 50+(20*((Current%30)-1)))
- P.MouseButton1Click:connect(function()
- Function(P)
- end)
- D = Instance.new("TextButton")
- D.Size = UDim2.new(0, 20, 0, 20)
- D.Text = "X"
- D.Name = N.Name
- D.Parent = Gui
- D.BackgroundColor3 = Color3.new(1, 0, 0)
- D.TextColor3 = Color3.new(0, 0, 0)
- D.BackgroundTransparency = 0.5
- D.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+130, 0, 50+(20*((Current%30)-1)))
- D.MouseButton1Click:connect(function()
- Deleted = N
- DeleteParent = N.Parent
- N.Parent = nil
- Clear()
- Search(DeleteParent)
- end)
- if Copy then
- C = Instance.new("TextButton")
- C.Size = UDim2.new(0, 20, 0, 20)
- C.Text = "C"
- C.Name = N.Name
- C.Parent = Gui
- C.BackgroundColor3 = Color3.new(0, 1, 0.5)
- C.TextColor3 = Color3.new(0, 0, 0)
- C.BackgroundTransparency = 0.5
- C.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+110, 0, 50+(20*((Current%30)-1)))
- C.MouseButton1Click:connect(function()
- Cloned = N
- Clear()
- Search(N.Parent)
- end)
- end
- Current = Current + 1
- return P
- end
- function AddOption(N, Function, Color, Text)
- if not N then
- error("RenderButton - No Name Specified")
- end
- if not Color then
- Color = Color3.new(1, 1, 1)
- end
- if Text == nil then
- Text = false
- end
- if Text then
- P = Instance.new("TextBox")
- else
- P = Instance.new("TextButton")
- end
- P.Text = N
- P.Name = N
- P.Parent = Gui
- P.BackgroundColor3 = Color
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Size = UDim2.new(0, 150, 0, 20)
- P.Position = UDim2.new(0, ((math.modf(CurrentOption/30))*150)+150, 0, 50+(20*((CurrentOption%30)-1)))
- if not Text and Function then
- P.MouseButton1Click:connect(function() Function(P) end)
- end
- CurrentOption = CurrentOption + 1
- return P
- end
- function AddTextOption(Obj, Prop)
- local Ob = Obj
- local Pro = Prop
- if type(Ob[Pro]) == "number" or type(Ob[Pro]) == "string" then
- CurrentOption = CurrentOption + 1
- local T = AddOption(Ob[Pro], nil, Color3.new(0.1, 0.4, 0.1), true)
- CurrentOption = CurrentOption - 2
- local O = AddOption("Change "..Pro..":", function() Ob[Pro] = T.Text end, Color3.new(0.1, 0.8, 0.1), false)
- CurrentOption = CurrentOption + 1
- end
- end
- function AddBrickColorOption(Obj, Prop)
- local Ob = Obj
- local Pro = Prop
- if BrickColor.new(tostring(Ob[Pro])) == Ob[Pro] then
- CurrentOption = CurrentOption + 1
- local T = AddOption(tostring(Ob[Pro]), nil, Color3.new(0.1, 0.4, 0.1), true)
- CurrentOption = CurrentOption - 2
- local O = AddOption("Change "..Pro..":", function() Ob[Pro] = BrickColor.new(T.Text) end, Color3.new(0.1, 0.8, 0.1), false)
- CurrentOption = CurrentOption + 1
- end
- end
- function AddBoolOption(Obj, Prop)
- local Ob = Obj
- local Pro = Prop
- if type(Ob[Pro]) == "boolean" then
- local O = AddOption(Pro..": "..tostring(Ob[Pro]), nil, Color3.new(0.1, 0.8, 0.1), false)
- O.MouseButton1Click:connect(function()
- if Ob[Pro] then
- Ob[Pro] = false
- O.Text = Pro..": false"
- else
- Ob[Pro] = true
- O.Text = Pro..": true"
- end
- end)
- end
- end
- function TestProperty(Obj, Property)
- Success = pcall(function()
- if Obj[Property] then
- return
- end
- end)
- return Success
- end
- function LoadOptions(Object)
- for Num, Prop in pairs(TextProperties) do
- if TestProperty(Object, Prop) then
- AddTextOption(Object, Prop)
- end
- end
- for Num, Prop in pairs(BoolProperties) do
- if TestProperty(Object, Prop) then
- AddBoolOption(Object, Prop)
- end
- end
- for Num, Prop in pairs(BrickColorProperties) do
- if TestProperty(Object, Prop) then
- AddBrickColorOption(Object, Prop)
- end
- end
- end
- function Search(Object)
- Gui = Instance.new("ScreenGui")
- Gui.Parent = game.CoreGui
- Gui.Name = "Explorer"
- if Object ~= game then
- AddOption("Back", function()
- Clear();
- Search(Object.Parent)
- end, Color3.new(0.5, 1, 1), false)
- end
- AddOption("Reload", function() Clear(); Search(Object); end, Color3.new(0.2, 1, 0.2), false)
- if Cloned then
- AddOption("Paste", function() Cloned:Clone().Parent = Object; Clear(); Search(Object); end, Color3.new(0.5, 1, 1), false)
- end
- if Deleted then
- AddOption("Undo", function() Deleted.Parent = DeleteParent; Deleted = nil; DeletedParent = nil; Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
- end
- if Object:IsA("Player") then
- AddOption("Goto Character", function() Clear(); if Object.Character then Search(Object.Character); end end, Color3.new(1, 1, 1), false)
- end
- if Object:IsA("LocalScript") then
- AddOption("EditScript", function() Clear(); ScriptSearch(Object); end, Color3.new(1, 1, 1), false)
- end
- if Object:IsA("Terrain") then
- AddOption("Clear", function() Object:Clear(); end, Color3.new(1, 1, 1), false)
- end
- LoadOptions(Object)
- AddOption("Close", Clear, Color3.new(1, 0.2, 0), false)
- if not Object:IsA("Workspace") or not Object:IsA("Player") then
- for Num, Obj in pairs(Object:GetChildren()) do
- --if not Obj:IsA("BasePart") or not Object.Parent == game.Workspace then
- if true then
- if Obj:IsA("LocalScript") then
- AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 0, 0), true)
- elseif Obj:IsA("Script") or Obj:IsA("StarterScript") or Obj:IsA("CoreScript") then
- AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(0.5, 0.5, 0.8), true)
- elseif Obj.Parent == game then
- AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), false)
- else
- AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), true)
- end
- end
- end
- end
- function MoveUp(Place, Amount)
- for i,v in pairs(Place:GetChildren()) do
- if v:IsA("TextLabel") or v:IsA("TextBox") then
- v.Position = v.Position + UDim2.new(0,0,0,-Amount)
- end
- end
- end
- function MoveDown(Place, Amount)
- for i,v in pairs(Place:GetChildren()) do
- if v:IsA("TextLabel") or v:IsA("TextBox") then
- v.Position = v.Position + UDim2.new(0,0,0,Amount)
- end
- end
- end
- i=0
- function ScriptSearch(S)
- Script2 = S
- Script = Script2.Source
- Table = {}
- Enabled = true
- Gui = Instance.new("ScreenGui")
- Gui.Parent = game.CoreGui
- Gui.Name = "Explorer"
- while Enabled do
- Start, End = string.find(Script, '\n')
- print(Start, End)
- if Start and End then
- table.insert(Table, string.sub(Script, 1, End))
- New = string.sub(Script, End+1, string.len(Script))
- Script = New
- else
- Enabled = false
- table.insert(Table, string.sub(Script, 1, End))
- print("Finished")
- end
- end
- P = Instance.new("TextLabel")
- P.Size = UDim2.new(0, 500, 0, 20)
- P.Text = Script2.Name
- P.Name = "Script Line"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(1, 1, 1)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
- P.TextXAlignment = "Left"
- i=i+1
- New = {}
- for I,Val in pairs(Table) do
- print(Val)
- P = Instance.new("TextBox")
- P.ClearTextOnFocus = false
- P.Size = UDim2.new(0, 500, 0, 20)
- P.Text = Val
- P.Name = "Script Line"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(1, 1, 1)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
- P.TextXAlignment = "Left"
- table.insert(New, P)
- i=i+1
- end
- i=1
- P = Instance.new("TextButton")
- P.Size = UDim2.new(0, 20, 0, 20)
- P.Text = "^"
- P.Name = "Scroll"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(1, 1, 1)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
- P.MouseButton1Click:connect(function()
- MoveUp(Gui, -20)
- end)
- i=i+1
- P = Instance.new("TextButton")
- P.Size = UDim2.new(0, 20, 0, 20)
- P.Text = "v"
- P.Name = "Scroll"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(1, 1, 1)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
- P.MouseButton1Click:connect(function()
- MoveDown(Gui, -20)
- end)
- i=i+1
- P = Instance.new("TextButton")
- P.Size = UDim2.new(0, 20, 0, 20)
- P.Text = "^^"
- P.Name = "Scroll"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(1, 1, 1)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
- P.MouseButton1Click:connect(function()
- MoveUp(Gui, -200)
- end)
- i=i+1
- P = Instance.new("TextButton")
- P.Size = UDim2.new(0, 20, 0, 20)
- P.Text = "vv"
- P.Name = "Scroll"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(1, 1, 1)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
- P.MouseButton1Click:connect(function()
- MoveDown(Gui, -200)
- end)
- i=i+1
- P = Instance.new("TextButton")
- P.Size = UDim2.new(0, 20, 0, 20)
- P.Text = "S"
- P.Name = "Save"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(0, 1, 0)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
- P.MouseButton1Click:connect(function()
- StringS = ""
- for Num, Obj in pairs(New) do
- StringS = StringS..Obj.Text..'\n'
- end
- S.Source = StringS
- S.Disabled = true
- S.Disabled = false
- end)
- i=i+1
- P = Instance.new("TextButton")
- P.Size = UDim2.new(0, 20, 0, 20)
- P.Text = "x"
- P.Name = "Back"
- P.Parent = Gui
- P.BackgroundColor3 = Color3.new(1, 0.2, 0)
- P.TextColor3 = Color3.new(0, 0, 0)
- P.BackgroundTransparency = 0.5
- P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
- P.MouseButton1Click:connect(function()
- Clear()
- i=0
- Search(S)
- end)
- i=i+1
- end
- end
- pgr.MouseButton1Click:connect(function()
- Clear()
- Search(game)
- end)
- end)
- Opengui.Name = "Opengui"
- Opengui.Parent = ScreenGui
- Opengui.BackgroundColor3 = Color3.new(1, 1, 1)
- Opengui.Position = UDim2.new(-0.0108695645, 0, 0.430278897, 0)
- Opengui.Size = UDim2.new(0, 95, 0, 43)
- Opengui.Style = Enum.FrameStyle.DropShadow
- Opengui.Active = true
- Opengui.Draggable = true
- Open.Name = "Open"
- Open.Parent = Opengui
- Open.BackgroundColor3 = Color3.new(0, 1, 0.498039)
- Open.Position = UDim2.new(-0.00167464092, 0, 0.0854993165, 0)
- Open.Size = UDim2.new(0, 78, 0, 20)
- Open.Font = Enum.Font.SourceSans
- Open.Text = "Open"
- Open.TextColor3 = Color3.new(1, 0, 0)
- Open.TextSize = 14
- Open.MouseButton1Down:connect(function()
- Opengui.Visible = false
- Maingui.Visible = true
- end)
- -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment