local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Steal a Turkish script By xxxomer12345678", LoadingTitle = "Loading...", LoadingSubtitle = "By xxxomer12345678", ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "StealConfig" }, Discord = {Enabled = false, Invite = "", RememberJoins = true}, KeySystem = false }) -- Uyarı Mesajı local player = game.Players.LocalPlayer local ScreenGui = Instance.new("ScreenGui", player.PlayerGui) local TextLabel = Instance.new("TextLabel", ScreenGui) TextLabel.Size = UDim2.new(0, 400, 0, 100) TextLabel.Position = UDim2.new(0.5, -200, 0.1, 0) TextLabel.Text = "MİNİ BİR SCRİPT AMA GÜZEL BİR SCRİPTTİR\nİYİ EĞLENCELER" TextLabel.TextScaled = true TextLabel.BackgroundTransparency = 0.5 TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BorderSizePixel = 0 -- 5 saniye sonra uyarı kaybolur delay(5, function() TextLabel:Destroy() end) -- Ses Çalma (20 saniye) local sound = Instance.new("Sound", workspace) sound.SoundId = "rbxassetid://125198718925476" sound.Volume = 1 sound:Play() -- 20 saniye sonra durdur delay(20, function() sound:Stop() sound:Destroy() end) ------------------------ -- Sekmeler ------------------------ local PlayerTab = Window:CreateTab("PLAYER") local StealTab = Window:CreateTab("STEAL") ------------------------ -- PLAYER SEKME İŞLEVLERİ ------------------------ -- NOCLIP Toggle local noclipEnabled = false PlayerTab:CreateToggle({ Name = "NOCLIP", CurrentValue = false, Flag = "NoclipToggle", Callback = function(value) noclipEnabled = value game:GetService("RunService").Stepped:Connect(function() if noclipEnabled then for _, part in pairs(player.Character:GetChildren()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) end }) -- SPEED Toggle local speedEnabled = false local speedValue = 36 PlayerTab:CreateToggle({ Name = "Speed", CurrentValue = false, Flag = "SpeedToggle", Callback = function(value) speedEnabled = value spawn(function() while speedEnabled do local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = speedValue end wait(0.1) end local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = 16 end end) end }) -- INF JUMP Toggle local infJumpEnabled = false PlayerTab:CreateToggle({ Name = "Inf Jump", CurrentValue = false, Flag = "InfJumpToggle", Callback = function(value) infJumpEnabled = value end }) game:GetService("UserInputService").JumpRequest:Connect(function() if infJumpEnabled then local humanoid = player.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end end) ------------------------ -- STEAL SEKME İŞLEVLERİ ------------------------ -- Fly GUI StealTab:CreateButton({ Name = "FLY GUI", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fly-Gui-V3-Turkish-48460"))() end })