-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") --// Kyelisz local gui = Instance.new("ScreenGui") gui.Name = "kyelisz" gui.ResetOnSpawn = false gui.Parent = playerGui local main = Instance.new("Frame") main.Name = "kyelisz" main.Size = UDim2.new(0, 260, 0, 155) main.Position = UDim2.new(0.5, -130, 0.5, -77) main.BackgroundColor3 = Color3.fromRGB(15, 15, 15) main.BorderSizePixel = 1 main.Parent = gui --// Title local title = Instance.new("TextLabel") title.Name = "kyelisz" title.Size = UDim2.new(1, -45, 0, 35) title.Position = UDim2.new(0, 10, 0, 0) title.BackgroundTransparency = 1 title.Text = "kyelisz" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 18 title.Font = Enum.Font.GothamBold title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = main --// Exit local exit = Instance.new("TextButton") exit.Name = "kyelisz" exit.Size = UDim2.new(0, 30, 0, 30) exit.Position = UDim2.new(1, -35, 0, 3) exit.BackgroundColor3 = Color3.fromRGB(120, 25, 25) exit.BorderSizePixel = 0 exit.Text = "X" exit.TextColor3 = Color3.fromRGB(255, 255, 255) exit.TextSize = 16 exit.Font = Enum.Font.GothamBold exit.Parent = main exit.MouseButton1Click:Connect(function() gui:Destroy() end) --// Delete ModelKeys local deleteButton = Instance.new("TextButton") deleteButton.Name = "kyelisz" deleteButton.Size = UDim2.new(1, -20, 0, 40) deleteButton.Position = UDim2.new(0, 10, 0, 42) deleteButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30) deleteButton.BorderSizePixel = 0 deleteButton.Text = "Delete ModelKeys" deleteButton.TextColor3 = Color3.fromRGB(255, 255, 255) deleteButton.TextSize = 15 deleteButton.Font = Enum.Font.GothamBold deleteButton.Parent = main deleteButton.MouseButton1Click:Connect(function() for _, obj in ipairs(workspace:GetDescendants()) do if obj:IsA("Model") and obj.Name == "ModelKey" then obj:Destroy() task.wait() end end end) --// Trap local trapButton = Instance.new("TextButton") trapButton.Name = "kyelisz" trapButton.Size = UDim2.new(1, -20, 0, 40) trapButton.Position = UDim2.new(0, 10, 0, 90) trapButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30) trapButton.BorderSizePixel = 0 trapButton.Text = "Trap: OFF" trapButton.TextColor3 = Color3.fromRGB(255, 255, 255) trapButton.TextSize = 15 trapButton.Font = Enum.Font.GothamBold trapButton.Parent = main local trapEnabled = false task.spawn(function() while gui.Parent do if trapEnabled then local character = player.Character local hrp = character and character:FindFirstChild("HumanoidRootPart") local trap = workspace:FindFirstChild("Trap") local button = trap and trap:FindFirstChild("Button") if hrp and button and button:FindFirstChild("TouchInterest") then firetouchinterest(hrp, button, 0) firetouchinterest(hrp, button, 1) end end task.wait(0.15) end end) trapButton.MouseButton1Click:Connect(function() trapEnabled = not trapEnabled trapButton.Text = trapEnabled and "Trap: ON" or "Trap: OFF" end) --// Dragging local dragging = false local dragStart local startPos title.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = main.Position end end) UserInputService.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then local delta = input.Position - dragStart main.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end) UserInputService.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end)