Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({
- Name = "Dandy World Helper",
- HidePremium = false,
- SaveConfig = true,
- ConfigFolder = "DandyHelperConfig"
- })
- local ScriptHubTab = Window:MakeTab({
- Name = "Script Hub",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- ScriptHubTab:AddButton({
- Name = "Open Infinite Yield",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end
- })
- ScriptHubTab:AddButton({
- Name = "Open Ritual",
- Callback = function()
- local owner = "ritualrblx"
- local repository = "ritual"
- local server = "discord.gg/ritualrblx"
- local link = string.format("https://raw.githubusercontent.com/%s/%s/%s/script", owner, repository, server)
- loadstring(game:HttpGet(link))()
- end
- })
- ScriptHubTab:AddButton({
- Name = "Open TgArceusX",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/main/Dandy's%20World"))("t.me/arceusxscripts")
- end
- })
- local VulnerabilityTab = Window:MakeTab({
- Name = "Vulnerability",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- VulnerabilityTab:AddButton({
- Name = "Open Easy Starter Character",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Slendyvn/Slendys-Dandys-World/refs/heads/main/Slendys%20Dandys%20World"))()
- end
- })
- VulnerabilityTab:AddButton({
- Name = "Add Dandy Icon In Tab",
- Callback = function()
- local args = {[1] = "Dandy"}
- game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Voted"):InvokeServer(unpack(args))
- end
- })
- local CharacterModsTab = Window:MakeTab({
- Name = "Character Mods",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- CharacterModsTab:AddSlider({
- Name = "Walk Speed",
- Min = 0,
- Max = 100,
- Default = 16,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Speed",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- CharacterModsTab:AddSlider({
- Name = "Jump Power",
- Min = 0,
- Max = 200,
- Default = 50,
- Color = Color3.fromRGB(255,255,255),
- Increment = 5,
- ValueName = "Jump",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- CharacterModsTab:AddSlider({
- Name = "Gravity",
- Min = 0,
- Max = 300,
- Default = 196,
- Color = Color3.fromRGB(255,255,255),
- Increment = 10,
- ValueName = "Gravity",
- Callback = function(Value)
- game.Workspace.Gravity = Value
- end
- })
- CharacterModsTab:AddSlider({
- Name = "Spin Speed (360 Rotation)",
- Min = 0,
- Max = 100,
- Default = 0,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Rotation",
- Callback = function(Value)
- local player = game.Players.LocalPlayer
- local humanoidRootPart = player.Character:WaitForChild("HumanoidRootPart")
- humanoidRootPart.RotVelocity = Vector3.new(0, Value, 0)
- end
- })
- local CreditsTab = Window:MakeTab({
- Name = "Credits",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- CreditsTab:AddLabel("Script by: Otvajni sopelki")
- CreditsTab:AddButton({
- Name = "Copy Telegram Link",
- Callback = function()
- setclipboard("https://t.me/sopelkom")
- print("Telegram link copied to clipboard!")
- end
- })
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment