Advertisement
thegameplayer

Untitled

May 10th, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))()
  2.  
  3. --mastadanws method, i just replaced the assets
  4. local Settings = {
  5. Resize = true,
  6. ResizeNum = 0.7,
  7. Color = Color3.fromRGB(102, 51, 153),
  8. LoadTime = 1
  9. }
  10.  
  11. repeat task.wait() until game:IsLoaded()
  12. local bwgames = {6872274481,8444591321,8560631822}
  13. if not table.find(bwgames,game.PlaceId) then return end
  14. task.wait(Settings.LoadTime)
  15. local cam = game:GetService("Workspace").Camera
  16. cam:WaitForChild("Viewmodel")
  17. cam.Viewmodel.ChildAdded:Connect(function(model)
  18. if model:FindFirstChild("Handle") then
  19. local handle = model:FindFirstChild("Handle")
  20. local name = string.lower(model.Name)
  21. handle.Material = Enum.Material.Glass
  22. handle.TextureID = "rbxassetid://13304849913"
  23. handle.Color = Settings.Color
  24. if name:find("sword") then
  25. handle.MeshId = "rbxassetid://13293006561"
  26. elseif name:find("pickaxe") then
  27. handle.MeshId = "rbxassetid://13303184641"
  28. if Settings.Resize == true then
  29. handle.Size = handle.Size / Settings.ResizeNum
  30. end
  31. end
  32. end
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement