local Players = game:GetService("Players") local RunService = game:GetService("RunService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local LocalPlayer = Players.LocalPlayer -- Main GUI local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "Exotic Hub" ScreenGui.ResetOnSpawn = false ScreenGui.IgnoreGuiInset = true ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") -- Main Frame local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.fromOffset(280, 150) MainFrame.Position = UDim2.new(0.05, 0, 0.2, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui -- Frame Stroke local UIStroke = Instance.new("UIStroke") UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border UIStroke.Thickness = 2 UIStroke.LineJoinMode = Enum.LineJoinMode.Round UIStroke.Color = Color3.fromRGB(60, 60, 70) UIStroke.Parent = MainFrame -- Frame Corners local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 16) UICorner.Parent = MainFrame -- Title Label local TitleLabel = Instance.new("TextLabel") TitleLabel.BackgroundTransparency = 1 TitleLabel.Size = UDim2.new(1, -24, 0, 36) TitleLabel.Position = UDim2.fromOffset(12, 10) TitleLabel.Font = Enum.Font.FredokaOne TitleLabel.TextSize = 30 TitleLabel.TextXAlignment = Enum.TextXAlignment.Center TitleLabel.Text = "Exotic Hub" TitleLabel.TextColor3 = Color3.fromRGB(245, 245, 248) TitleLabel.TextStrokeColor3 = Color3.fromRGB(0, 0, 0) TitleLabel.TextStrokeTransparency = 0.7 TitleLabel.Parent = MainFrame -- Activate Button local ActivateButton = Instance.new("TextButton") ActivateButton.Size = UDim2.new(1, -24, 0, 52) ActivateButton.Position = UDim2.fromOffset(12, 80) ActivateButton.Font = Enum.Font.GothamBold ActivateButton.TextSize = 20 ActivateButton.Text = "⚡ Sling Em!" ActivateButton.TextColor3 = Color3.fromRGB(235, 235, 240) ActivateButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) ActivateButton.AutoButtonColor = true ActivateButton.BorderSizePixel = 0 ActivateButton.Parent = MainFrame local ButtonCorner = Instance.new("UICorner") ButtonCorner.CornerRadius = UDim.new(0, 12) ButtonCorner.Parent = ActivateButton -- Functionality: Sling Em local Net = require(ReplicatedStorage:WaitForChild("Packages").Net) ActivateButton.MouseButton1Click:Connect(function() ActivateButton.Text = "Working..." local Character = LocalPlayer.Character if not Character then return end local Humanoid = Character:FindFirstChild("Humanoid") local RootPart = Character:FindFirstChild("HumanoidRootPart") if not Humanoid or not RootPart then return end local WebSlinger = LocalPlayer.Backpack:FindFirstChild("Web Slinger") if WebSlinger and WebSlinger:IsA("Tool") then Humanoid:EquipTool(WebSlinger) for _, Player in ipairs(Players:GetPlayers()) do if Player ~= LocalPlayer and Player.Character then local TargetRoot = Player.Character:FindFirstChild("HumanoidRootPart") if TargetRoot then Net:RemoteEvent("UseItem"):FireServer(TargetRoot.Position, TargetRoot) ActivateButton.Text = "Slinging Player..." wait(0.1) end end end ActivateButton.Text = "⚡ Sling Em!" else ActivateButton.Text = "No Web Slinger Found" wait(2) ActivateButton.Text = "⚡ Sling Em!" end end)