#Vector3 help
23 messages · Page 1 of 1 (latest)
game.Players.PlayerAdded:Connect(function(plr)
plr.Chatted:Connect(function(msg)
if msg == "x" then
print("a")
workspace.Baseplate.Size = Vector3.new((workspace.Baseplate.Size.X / 2), 16, (workspace.Baseplate.Size.Y / 2))
plr.Character.HumanoidRootPart.CFrame = workspace.Baseplate + Vector3.new(0, 3, 0)
end
end)
end)
workspace.Baseplate.Size = Vector3.new((workspace.Baseplate.Size.X / 2), 16, (workspace.Baseplate.Size.Y / 2))
try this
Still same results
What is the problem ?
send output screenshot
** You are now Level 2! **
oh I see it
Yeah just noticed haha
yep
game.Players.PlayerAdded:Connect(function(plr)
plr.Chatted:Connect(function(msg)
if msg == "x" then
print("a")
workspace.Baseplate.Size = Vector3.new((workspace.Baseplate.Size.X / 2), 16, (workspace.Baseplate.Size.Y / 2))
plr.Character.HumanoidRootPart.CFrame = workspace.Baseplate.CFrame * CFrame.new(0, 3, 0)
end
end)
end)
check this code
Dumb me
and me