Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 11.61 KB | None | 0 0
  1. -- Farewell Infortality. -- Version: 2.82 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Main = Instance.new("Frame") local BeautyA = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local BeautyB = Instance.new("Frame") local TextLabel_2 = Instance.new("TextLabel") local Floor = Instance.new("TextLabel") local Vel = Instance.new("TextLabel") local xp = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Main.Name = "Main" Main.Parent = ScreenGui Main.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) Main.BorderColor3 = Color3.new(1, 1, 1) Main.Position = UDim2.new(0.110518292, 0, 0.250379384, 0) Main.Size = UDim2.new(0, 295, 0, 131) BeautyA.Name = "BeautyA" BeautyA.Parent = Main BeautyA.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) BeautyA.BorderColor3 = Color3.new(1, 1, 1) BeautyA.Size = UDim2.new(0, 295, 0, 28) TextLabel.Parent = BeautyA TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) TextLabel.BackgroundTransparency = 1 TextLabel.Size = UDim2.new(0, 281, 0, 28) TextLabel.Font = Enum.Font.Arcade TextLabel.Text = "Swordburst 2 Drops GUI" TextLabel.TextColor3 = Color3.new(1, 1, 1) TextLabel.TextSize = 18 BeautyB.Name = "BeautyB" BeautyB.Parent = Main BeautyB.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) BeautyB.BorderColor3 = Color3.new(1, 1, 1) BeautyB.Position = UDim2.new(0, 0, 0.778625846, 0) BeautyB.Size = UDim2.new(0, 295, 0, 29) TextLabel_2.Parent = BeautyB TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1) TextLabel_2.BackgroundTransparency = 1 TextLabel_2.Size = UDim2.new(0, 281, 0, 28) TextLabel_2.Font = Enum.Font.Arcade TextLabel_2.Text = "GUI by Duke Of Ducks#6096" TextLabel_2.TextColor3 = Color3.new(1, 1, 1) TextLabel_2.TextSize = 16 Floor.Name = "Floor" Floor.Parent = Main Floor.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) Floor.BorderColor3 = Color3.new(1, 1, 1) Floor.Position = UDim2.new(0.135569125, 0, 0.213740453, 0) Floor.Size = UDim2.new(0, 215, 0, 26) Floor.Font = Enum.Font.SciFi Floor.Text = "You are not on Swordburst 2" Floor.TextColor3 = Color3.new(0, 1, 0) Floor.TextSize = 14 Vel.Name = "Vel" Vel.Parent = Main Vel.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) Vel.BackgroundTransparency = 1 Vel.BorderSizePixel = 0 Vel.Position = UDim2.new(-0.0618479475, 0, 0.40557757, 0) Vel.Size = UDim2.new(0, 186, 0, 50) Vel.Font = Enum.Font.SourceSans Vel.Text = "Vel Earned : 0" Vel.TextColor3 = Color3.new(1, 1, 1) Vel.TextSize = 22 xp.Name = "xp" xp.Parent = Main xp.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) xp.BackgroundTransparency = 1 xp.BorderSizePixel = 0 xp.Position = UDim2.new(0.430585831, 0, 0.40557757, 0) xp.Size = UDim2.new(0, 186, 0, 50) xp.Font = Enum.Font.SourceSans xp.Text = "XP Earned : 0" xp.TextColor3 = Color3.new(1, 1, 1) xp.TextSize = 22 -- Scripts: function SCRIPT_QMCB89_FAKESCRIPT() -- Main.Dragscript    local script = Instance.new('LocalScript')  script.Parent = Main    local UserInputService,gui,dragging,dragInput,dragStart,startPos = game:GetService("UserInputService"),script.Parent        local function update(input)     local delta = input.Position - dragStart    gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)     end         gui.InputBegan:Connect(function(input)   if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then   dragging = true     dragStart = input.Position      startPos = gui.Position         input.Changed:Connect(function()    if input.UserInputState == Enum.UserInputState.End then     dragging = false    end     end)    end    end)        gui.InputChanged:Connect(function(input)     if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then      dragInput = input   end    end)        UserInputService.InputChanged:Connect(function(input)    if input == dragInput and dragging then     update(input)   end    end) end coroutine.resume(coroutine.create(SCRIPT_QMCB89_FAKESCRIPT)) function SCRIPT_GVUW68_FAKESCRIPT() -- BeautyA.Script     local script = Instance.new('Script')   script.Parent = BeautyA     local frame = script.Parent         while true do       for hue = 0, 255, 4 do          -- HSV = hue, saturation, value             frame.BorderColor3 = Color3.fromHSV(hue/256,1,1)            wait(0.1)       end     end end coroutine.resume(coroutine.create(SCRIPT_GVUW68_FAKESCRIPT)) function SCRIPT_UNVD86_FAKESCRIPT() -- BeautyB.Script  local script = Instance.new('Script')   script.Parent = BeautyB     local frame = script.Parent         while true do       for hue = 0, 255, 4 do          -- HSV = hue, saturation, value             frame.BorderColor3 = Color3.fromHSV(hue/256,1,1)            wait(0.1)       end     end end coroutine.resume(coroutine.create(SCRIPT_UNVD86_FAKESCRIPT)) function SCRIPT_JTBX76_FAKESCRIPT() -- Main.Script     local script = Instance.new('Script')   script.Parent = Main    local frame = script.Parent         while true do       for hue = 0, 255, 4 do          -- HSV = hue, saturation, value             frame.BorderColor3 = Color3.fromHSV(hue/256,1,1)            wait(0.1)       end     end end coroutine.resume(coroutine.create(SCRIPT_JTBX76_FAKESCRIPT)) function SCRIPT_YJNZ82_FAKESCRIPT() -- Floor.Script    local script = Instance.new('Script')   script.Parent = Floor   if game.Workspace.Mobs:FindFirstChild("Ruin Knight") or game.Workspace.Mobs:FindFirstChild("Frenzy Boar") or game.Workspace.Mobs:FindFirstChild("Wolf") or game.Workspace.Mobs:FindFirstChild("Hermit Crab") or game.Workspace.Mobs:FindFirstChild("Bear") or game.Workspace.Mobs:FindFirstChild("Dire Wolf") or game.Workspace.Mobs:FindFirstChild("Draconite") or game.Workspace.Mobs:FindFirstChild("Ruined Kobold Knight") or game.Workspace.Mobs:FindFirstChild("Rahjin the Thief King") then  script.Parent.Text = "Floor 1"  elseif   game.Workspace.Mobs:FindFirstChild("Leaf Beetle") or game.Workspace.Mobs:FindFirstChild("Leaf Ogre") or game.Workspace.Mobs:FindFirstChild("Leafray") or game.Workspace.Mobs:FindFirstChild("Pearl Keeper") or game.Workspace.Mobs:FindFirstChild("Wasp") or game.Workspace.Mobs:FindFirstChild("Pearl Guardian") or game.Workspace.Mobs:FindFirstChild("Pearl Keeper") or game.Workspace.Mobs:FindFirstChild("Bushback Tortoise") or game.Workspace.Mobs:FindFirstChild("Giant Ruins Hornet") or game.Workspace.Mobs:FindFirstChild("Borik the BeeKeeper") then           script.Parent.Text = "Floor 2"  elseif      game.Workspace.Mobs:FindFirstChild("Snowgre") or game.Workspace.Mobs:FindFirstChild("Angry Snowman") or game.Workspace.Mobs:FindFirstChild("Icewhal") or game.Workspace.Mobs:FindFirstChild("Alpha Icewhal") or game.Workspace.Mobs:FindFirstChild("Item Crystal") or game.Workspace.Mobs:FindFirstChild("Ice Elemental") or game.Workspace.Mobs:FindFirstChild("Snowhorse") or game.Workspace.Mobs:FindFirstChild("Ice Walker") or game.Workspace.Mobs:FindFirstChild("Qerach The Forgotten Golem") or game.Workspace.Mobs:FindFirstChild("Ra'thae the Ice King") then             script.Parent.Text = "Floor 3"  elseif      game.Workspace.Mobs:FindFirstChild("Wattlechin Crocodile") or game.Workspace.Mobs:FindFirstChild("Treehorse") or game.Workspace.Mobs:FindFirstChild("Birchman") or game.Workspace.Mobs:FindFirstChild("Treeray") or game.Workspace.Mobs:FindFirstChild("Bamboo Spiderling") or game.Workspace.Mobs:FindFirstChild("Bamboo Spider") or game.Workspace.Mobs:FindFirstChild("Dungeon Dweller") or game.Workspace.Mobs:FindFirstChild("Rotling") or game.Workspace.Mobs:FindFirstChild("Boneling") or game.Workspace.Mobs:FindFirstChild("Lion Protector") or game.Workspace.Mobs:FindFirstChild("Irath the Lion") then             script.Parent.Text = "Floor 4"          elseif      game.Workspace.Mobs:FindFirstChild("Girdled Lizard") or game.Workspace.Mobs:FindFirstChild("Angry Cactus") or game.Workspace.Mobs:FindFirstChild("Desert Vulture") or game.Workspace.Mobs:FindFirstChild("Sand Scorpion") or game.Workspace.Mobs:FindFirstChild("Giant Centipede") or game.Workspace.Mobs:FindFirstChild("Fire Scorpion") or game.Workspace.Mobs:FindFirstChild("Green Patrolman") or game.Workspace.Mobs:FindFirstChild("Patrolman Elite") or game.Workspace.Mobs:FindFirstChild("Centaurian Defender") or game.Workspace.Mobs:FindFirstChild("Sa'jun the Centurian Chieftain") then           script.Parent.Text = "Floor 5"  elseif      game.Workspace.Mobs:FindFirstChild("Jelly Wisp") or game.Workspace.Mobs:FindFirstChild("Gloom Shroom") or game.Workspace.Mobs:FindFirstChild("Shroom Back Clam") or game.Workspace.Mobs:FindFirstChild("Horned Sailfin Iguana") or game.Workspace.Mobs:FindFirstChild("Firefly") or game.Workspace.Mobs:FindFirstChild("Frogazoid") or game.Workspace.Mobs:FindFirstChild("Snapper") or game.Workspace.Mobs:FindFirstChild("Blightmouth") or game.Workspace.Mobs:FindFirstChild("Smashroom")then            script.Parent.Text = "Floor 7"  elseif      game.Workspace.Mobs:FindFirstChild("Giant Praying Mantis") or game.Workspace.Mobs:FindFirstChild("Petal Knight") or game.Workspace.Mobs:FindFirstChild("Leaf Rhino") or game.Workspace.Mobs:FindFirstChild("Sky Raven") or game.Workspace.Mobs:FindFirstChild("Hippogriff") or game.Workspace.Mobs:FindFirstChild("Forest Wanderer") or game.Workspace.Mobs:FindFirstChild("Wingless Hippogriff") or game.Workspace.Mobs:FindFirstChild("Dungeon Crusador") or game.Workspace.Mobs:FindFirstChild("Formaug the Jungle Giant")then    script.Parent.Text = "Floor 8"     elseif      game.Workspace.Mobs:FindFirstChild("Batting Eye") or game.Workspace.Mobs:FindFirstChild("Lingerer") or game.Workspace.Mobs:FindFirstChild("Fishrock Spider") or game.Workspace.Mobs:FindFirstChild("Ent") or game.Workspace.Mobs:FindFirstChild("Reptasaurus") or game.Workspace.Mobs:FindFirstChild("Polyserpant") or game.Workspace.Mobs:FindFirstChild("Gargoyle Reaper") or game.Workspace.Mobs:FindFirstChild("Reptasaurus") or game.Workspace.Mobs:FindFirstChild("Enraged Lingerer")then             script.Parent.Text = "Floor 9"          elseif          game.Workspace.Mobs:FindFirstChild("Minion") or game.Workspace.Mobs:FindFirstChild("Winged Minion") or game.Workspace.Mobs:FindFirstChild("Grunt") or game.Workspace.Mobs:FindFirstChild("Guard Hound") or game.Workspace.Mobs:FindFirstChild("Clay Giant") or game.Workspace.Mobs:FindFirstChild("Shady Villager") or game.Workspace.Mobs:FindFirstChild("Baal") or game.Workspace.Mobs:FindFirstChild("Wendigo") or game.Workspace.Mobs:FindFirstChild("Undead Servant") or game.Workspace.Mobs:FindFirstChild("Grim the Overseer")then           script.Parent.Text = "Floor 10"     elseif      game.Workspace:FindFirstChild("Present") then           script.Parent.Text = "Floor 6"      end                                                                                              end coroutine.resume(coroutine.create(SCRIPT_YJNZ82_FAKESCRIPT)) function SCRIPT_UQSB78_FAKESCRIPT() -- Floor.Script   local script = Instance.new('Script')   script.Parent = Floor   local frame = script.Parent         while true do       for hue = 0, 255, 4 do          -- HSV = hue, saturation, value             frame.BorderColor3 = Color3.fromHSV(hue/256,1,1)            wait(0.1)       end     end end coroutine.resume(coroutine.create(SCRIPT_UQSB78_FAKESCRIPT)) function SCRIPT_QHYK71_FAKESCRIPT() -- Vel.Script  local script = Instance.new('Script')   script.Parent = Vel     startvel = game.ReplicatedStorage.Profiles[game.Players.LocalPlayer.Name].Stats.Vel.Value   name = game.Players.LocalPlayer.Name    while true do       wait()      script.Parent.Text = "Vel Earned : "..(game.ReplicatedStorage.Profiles[name].Stats.Vel.Value-startvel)  end end coroutine.resume(coroutine.create(SCRIPT_QHYK71_FAKESCRIPT)) function SCRIPT_HVFK72_FAKESCRIPT() -- xp.Script   local script = Instance.new('Script')   script.Parent = xp  startxp = game.ReplicatedStorage.Profiles[game.Players.LocalPlayer.Name].Stats.Exp.Value    name = game.Players.LocalPlayer.Name    while true do       wait()      script.Parent.Text = "XP Earned : "..(game.ReplicatedStorage.Profiles[name].Stats.Exp.Value-startxp)    end end coroutine.resume(coroutine.create(SCRIPT_HVFK72_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement