Advertisement
thegameplayer

Untitled

May 10th, 2023 (edited)
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2. local Window = Library.CreateLib("Bedwars Textures", "Ocean")
  3.  
  4. -- Tabs
  5.  
  6. local Tab1 = Window:NewTab("Textures”)
  7. local Tab1Section = Tab1:NewSection("Textures")
  8.  
  9. Tab1Section:NewButton("Sword x Pickaxe", "Made By Mastadown.", function()
  10.  
  11. --mastadanws method, i just replaced the assets
  12. local Settings = {
  13. Resize = true,
  14. ResizeNum = 0.7,
  15. Color = Color3.fromRGB(102, 51, 153),
  16. LoadTime = 1
  17. }
  18.  
  19. repeat task.wait() until game:IsLoaded()
  20. local bwgames = {6872274481,8444591321,8560631822}
  21. if not table.find(bwgames,game.PlaceId) then return end
  22. task.wait(Settings.LoadTime)
  23. local cam = game:GetService("Workspace").Camera
  24. cam:WaitForChild("Viewmodel")
  25. cam.Viewmodel.ChildAdded:Connect(function(model)
  26. if model:FindFirstChild("Handle") then
  27. local handle = model:FindFirstChild("Handle")
  28. local name = string.lower(model.Name)
  29. handle.Material = Enum.Material.Glass
  30. handle.TextureID = "rbxassetid://13304849913"
  31. handle.Color = Settings.Color
  32. if name:find("sword") then
  33. handle.MeshId = "rbxassetid://13293006561"
  34. elseif name:find("pickaxe") then
  35. handle.MeshId = "rbxassetid://13303184641"
  36. if Settings.Resize == true then
  37. handle.Size = handle.Size / Settings.ResizeNum
  38. end
  39. end
  40. end
  41. end)
  42. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement