ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script πŸ“Œ
563 Views

Best UI Library Crimson UI

Universal Script πŸ“ŒUploaded by
3 days ago
Please login to perform these actions:

Description

--Π²ΡΡ‚Π°Π²ΡŒ лоадстринг Ρ‚Π°ΠΌ Π³Π΄Π΅ ΠΊΡ€ΠΈΠΏΠ·ΠΎΠ½, это Π»ΡƒΡ‡ΡˆΠ΅Π΅ Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ ΡƒΠ²ΠΈΠ΄ΠΈΡˆΡŒ --put Loadstring into the Crimson, it will be the best thing you even see -- ΠŸΡ€ΠΈΠΌΠ΅Ρ€ ΠΌΠΎΠ΅Π³ΠΎ скрипта: local Crimson = loadstring(game:HttpGet("URL_TO_MODULE"))() -- Или Ссли ΠΌΠΎΠ΄ΡƒΠ»ΡŒ: -- local Crimson = require(path.to.module) -- Π˜Π½ΠΈΡ†ΠΈΠ°Π»ΠΈΠ·Π°Ρ†ΠΈΡ Crimson:Init({ Title = "My Hub", Subtitle = "best script hub ever", Width = 420, Height = 660, SkipIntro = false, -- true Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΠΈΠ½Ρ‚Ρ€ΠΎ OrbPosition = UDim2.new(0, 40, 0.5, 0), }) -- Π­Π»Π΅ΠΌΠ΅Π½Ρ‚Ρ‹ Crimson:Separator("Player") Crimson:Slider({ Title = "Walk Speed", Desc = "Movement speed", Min = 0, Max = 200, Default = 16, Step = 1, Keywords = "walk speed run fast", Callback = function(v) -- вызываСтся ΠΏΡ€ΠΈ отпускании game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v end, OnChanged = function(v) -- вызываСтся ΠΏΡ€ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠΌ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΈ print("Slider changing:", v) end, }) Crimson:Toggle({ Title = "Noclip", Desc = "Walk through walls", Keywords = "noclip walls ghost", Callback = function(v) _G.Noclip = v end, OnChanged = function(v) print("Toggle changed to:", v) end, }) Crimson:Button({ Title = "Reset Character", Desc = "Respawn your character", Keywords = "reset respawn die", Callback = function() game.Players.LocalPlayer.Character.Humanoid.Health = 0 end, }) Crimson:Colorpicker({ Title = "ESP Color", Default = Color3.fromRGB(180, 30, 30), Keywords = "esp color highlight", Callback = function(color) print("Final color:", color) end, OnChanged = function(color) -- ΠΏΡ€ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠΌ Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΠΈ курсора print("Color changing:", color) end, }) Crimson:Dropdown({ Title = "Mode", Values = {"Easy", "Normal", "Hard"}, Value = 1, Keywords = "mode difficulty", Callback = function(v) print("Selected:", v) end, OnChanged = function(v) print("Changed:", v) end, }) Crimson:Input({ Title = "Player Name", Placeholder = "Enter name...", Keywords = "player name teleport", Callback = function(text) -- ΠΏΡ€ΠΈ FocusLost print("Submitted:", text) end, OnChanged = function(text) -- ΠΏΡ€ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠΌ символС print("Typing:", text) end, }) Crimson:Keybind({ Title = "Toggle UI", Value = "RightControl", Keywords = "keybind toggle key", Callback = function(key) print("Key set:", key) end, OnChanged = function(key) print("Key changed:", key) end, }) -- Ask dialog Crimson:Ask({ Title = "Delete Config?", Content = "This action cannot be undone.", ConfirmText = "Delete", CancelText = "Keep", OnConfirm = function() print("Deleted!") Crimson:Notify({Title = "Deleted", Type = "Error", Duration = 3}) end, OnCancel = function() print("Cancelled") end, }) -- Ask с тСкстовым ΠΏΠΎΠ»Π΅ΠΌ Crimson:Ask({ Title = "Rename Config", Content = "Enter a new name:", Input = true, InputPlaceholder = "Config name...", InputDefault = "default", ConfirmText = "Save", CancelText = "Cancel", OnConfirm = function(inputValue) print("New name:", inputValue) Crimson:Notify({Title = "Saved", Content = "Config renamed to: " .. inputValue, Type = "Success"}) end, }) Crimson:Open() Crimson:Close()

View Raw
Edited By: i_kawaii Download


Comments
1
User profile picture
Savelsav 3 days ago
how shoud i enable it? where i need place it?
Please Login to add a comment.