local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.ResetOnSpawn = false gui.Name = "DashGui" gui.Parent = player:WaitForChild("PlayerGui") local dashButton = Instance.new("TextButton") dashButton.Size = UDim2.new(0, 120, 0, 50) dashButton.Position = UDim2.new(0, 10, 0.5, -25) dashButton.BackgroundColor3 = Color3.fromRGB(200, 0, 0) dashButton.Text = "Dash (FE)" dashButton.TextColor3 = Color3.new(1, 1, 1) dashButton.Font = Enum.Font.GothamBold dashButton.TextSize = 20 dashButton.BorderSizePixel = 0 dashButton.Parent = gui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = dashButton local stroke = Instance.new("UIStroke") stroke.Thickness = 2 stroke.Color = Color3.fromRGB(255, 80, 80) stroke.Parent = dashButton local DashRemote = game:GetService("ReplicatedStorage"):WaitForChild("DashRemote") local TweenService = game:GetService("TweenService") dashButton.MouseButton1Click:Connect(function() local t1 = TweenService:Create(dashButton, TweenInfo.new(0.1), {BackgroundColor3 = Color3.fromRGB(255, 50, 50)}) local t2 = TweenService:Create(dashButton, TweenInfo.new(0.1), {BackgroundColor3 = Color3.fromRGB(200, 0, 0)}) t1:Play() t1.Completed:Connect(function() t2:Play() end) pcall(function() DashRemote:FireServer() end) end)