Advertisement
BoblokDevelopyyyr

Script

Jan 4th, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. local RS = game:GetService("ReplicatedStorage")
  2. local ev = RS.RemoteEvent
  3.  
  4.  
  5. local part = Instance.new("Part")
  6. part.Parent = workspace
  7. part.Name = "FluidShape"
  8. part.Position = Vector3.new(0, 5, 0)
  9. part.Anchored = true
  10. part.CanCollide = false
  11.  
  12. ev.OnServerEvent:Connect(function(plr, shape)
  13.     part.Shape = shape
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement