ega_bib

dandy world hub

Oct 10th, 2024 (edited)
13,167
5
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.75 KB | Gaming | 5 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({
  4.     Name = "Dandy World Helper",
  5.     HidePremium = false,
  6.     SaveConfig = true,
  7.     ConfigFolder = "DandyHelperConfig"
  8. })
  9.  
  10. local ScriptHubTab = Window:MakeTab({
  11.     Name = "Script Hub",
  12.     Icon = "rbxassetid://4483345998",
  13.     PremiumOnly = false
  14. })
  15.  
  16. ScriptHubTab:AddButton({
  17.     Name = "Open Infinite Yield",
  18.     Callback = function()
  19.         loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  20.     end    
  21. })
  22.  
  23. ScriptHubTab:AddButton({
  24.     Name = "Open Ritual",
  25.     Callback = function()
  26.         local owner = "ritualrblx"
  27.         local repository = "ritual"
  28.         local server = "discord.gg/ritualrblx"
  29.         local link = string.format("https://raw.githubusercontent.com/%s/%s/%s/script", owner, repository, server)
  30.         loadstring(game:HttpGet(link))()
  31.     end    
  32. })
  33.  
  34. ScriptHubTab:AddButton({
  35.     Name = "Open TgArceusX",
  36.     Callback = function()
  37.         loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/main/Dandy's%20World"))("t.me/arceusxscripts")
  38.     end    
  39. })
  40.  
  41. local VulnerabilityTab = Window:MakeTab({
  42.     Name = "Vulnerability",
  43.     Icon = "rbxassetid://4483345998",
  44.     PremiumOnly = false
  45. })
  46.  
  47. VulnerabilityTab:AddButton({
  48.     Name = "Open Easy Starter Character",
  49.     Callback = function()
  50.         loadstring(game:HttpGet("https://raw.githubusercontent.com/Slendyvn/Slendys-Dandys-World/refs/heads/main/Slendys%20Dandys%20World"))()
  51.     end    
  52. })
  53.  
  54. VulnerabilityTab:AddButton({
  55.     Name = "Add Dandy Icon In Tab",
  56.     Callback = function()
  57.         local args = {[1] = "Dandy"}
  58.         game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Voted"):InvokeServer(unpack(args))
  59.     end    
  60. })
  61.  
  62. local CharacterModsTab = Window:MakeTab({
  63.     Name = "Character Mods",
  64.     Icon = "rbxassetid://4483345998",
  65.     PremiumOnly = false
  66. })
  67.  
  68. CharacterModsTab:AddSlider({
  69.     Name = "Walk Speed",
  70.     Min = 0,
  71.     Max = 100,
  72.     Default = 16,
  73.     Color = Color3.fromRGB(255,255,255),
  74.     Increment = 1,
  75.     ValueName = "Speed",
  76.     Callback = function(Value)
  77.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  78.     end    
  79. })
  80.  
  81. CharacterModsTab:AddSlider({
  82.     Name = "Jump Power",
  83.     Min = 0,
  84.     Max = 200,
  85.     Default = 50,
  86.     Color = Color3.fromRGB(255,255,255),
  87.     Increment = 5,
  88.     ValueName = "Jump",
  89.     Callback = function(Value)
  90.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  91.     end    
  92. })
  93.  
  94. CharacterModsTab:AddSlider({
  95.     Name = "Gravity",
  96.     Min = 0,
  97.     Max = 300,
  98.     Default = 196,
  99.     Color = Color3.fromRGB(255,255,255),
  100.     Increment = 10,
  101.     ValueName = "Gravity",
  102.     Callback = function(Value)
  103.         game.Workspace.Gravity = Value
  104.     end    
  105. })
  106.  
  107. CharacterModsTab:AddSlider({
  108.     Name = "Spin Speed (360 Rotation)",
  109.     Min = 0,
  110.     Max = 100,
  111.     Default = 0,
  112.     Color = Color3.fromRGB(255,255,255),
  113.     Increment = 1,
  114.     ValueName = "Rotation",
  115.     Callback = function(Value)
  116.         local player = game.Players.LocalPlayer
  117.         local humanoidRootPart = player.Character:WaitForChild("HumanoidRootPart")
  118.         humanoidRootPart.RotVelocity = Vector3.new(0, Value, 0)
  119.     end    
  120. })
  121.  
  122. local CreditsTab = Window:MakeTab({
  123.     Name = "Credits",
  124.     Icon = "rbxassetid://4483345998",
  125.     PremiumOnly = false
  126. })
  127.  
  128. CreditsTab:AddLabel("Script by: Otvajni sopelki")
  129.  
  130. CreditsTab:AddButton({
  131.     Name = "Copy Telegram Link",
  132.     Callback = function()
  133.         setclipboard("https://t.me/sopelkom")
  134.         print("Telegram link copied to clipboard!")
  135.     end    
  136. })
  137.  
  138. OrionLib:Init()
  139.  
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment