Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local toggle = false
- local UIS = game:GetService("UserInputService")
- local Size = Vector3.new(2,2,2) --Change 2,2,2 to desired head size. Numbers represent (x,y,z).
- local Key = "C" --Change C to the desired key.
- local function Notify(...)
- game.StarterGui:SetCore('SendNotification',...)
- end
- UIS.InputBegan:Connect(function(k)
- if k.KeyCode == Enum.KeyCode[Key] then
- toggle = not toggle
- for k,v in next, game:GetService('Players'):GetPlayers() do
- if v.Character:FindFirstChild('Head') then
- local Head = v.Character:FindFirstChild('Head')
- Head.Size = Vector3.new(2,1,1)
- Head.Size = Size
- game.Players.LocalPlayer.Character.Head.Size = Vector3.new(2,1,1)
- if toggle then
- Head.Size = Vector3.new(2,1,1)
- end
- end
- end
- end
- end)
- Notify({Title="Straight to the expander bois";Text="QWere"})
- wait(1)
- Notify({Title="Welcome...";Text=game.Players.LocalPlayer.Name})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement