local player = game.Players.LocalPlayer local coreGui = game:GetService("CoreGui") local replicatedStorage = game:GetService("ReplicatedStorage") local screenGui = Instance.new("ScreenGui", coreGui) local function executeSkill() local xyz = replicatedStorage:WaitForChild("Xyz") local bba = xyz:WaitForChild("bba") bba:FireServer() end local function createButton(text, position, callback) local button = Instance.new("TextButton", screenGui) button.Size = UDim2.new(0, 60, 0, 60) button.Position = position button.Text = text button.BackgroundColor3 = Color3.fromRGB(30, 30, 30) button.TextColor3 = Color3.fromRGB(255, 0, 255) button.BackgroundTransparency = 0.5 button.TextTransparency = 0 button.Font = Enum.Font.GothamBold button.TextSize = 14 button.MouseButton1Click:Connect(callback) end createButton("Destroy", UDim2.new(1, -60, 0.5, -30), executeSkill)script